Don't #include <Support/*>, #include "Support/*"
llvm-svn: 4325
diff --git a/llvm/include/Support/DepthFirstIterator.h b/llvm/include/Support/DepthFirstIterator.h
index e0782ac..7ae4b9d 100644
--- a/llvm/include/Support/DepthFirstIterator.h
+++ b/llvm/include/Support/DepthFirstIterator.h
@@ -9,7 +9,7 @@
#define LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H
#include "Support/GraphTraits.h"
-#include <Support/iterator>
+#include "Support/iterator"
#include <stack>
#include <set>
diff --git a/llvm/include/Support/HashExtras.h b/llvm/include/Support/HashExtras.h
index 5887a83..68a49ea 100644
--- a/llvm/include/Support/HashExtras.h
+++ b/llvm/include/Support/HashExtras.h
@@ -11,7 +11,7 @@
#define LLVM_SUPPORT_HASHEXTRAS_H
#include <string>
-#include <Support/hash_map>
+#include "Support/hash_map"
// Cannot specialize hash template from outside of the std namespace.
namespace HASH_NAMESPACE {
diff --git a/llvm/include/Support/MathExtras.h b/llvm/include/Support/MathExtras.h
index d907658..d733941 100644
--- a/llvm/include/Support/MathExtras.h
+++ b/llvm/include/Support/MathExtras.h
@@ -7,7 +7,7 @@
#ifndef SUPPORT_MATH_EXTRAS_H
#define SUPPORT_MATH_EXTRAS_H
-#include <Support/DataTypes.h>
+#include "Support/DataTypes.h"
inline unsigned log2(uint64_t C) {
unsigned getPow;
diff --git a/llvm/include/Support/PostOrderIterator.h b/llvm/include/Support/PostOrderIterator.h
index a9f13da..507f4c2 100644
--- a/llvm/include/Support/PostOrderIterator.h
+++ b/llvm/include/Support/PostOrderIterator.h
@@ -10,7 +10,7 @@
#define LLVM_SUPPORT_POSTORDER_ITERATOR_H
#include "Support/GraphTraits.h"
-#include <Support/iterator>
+#include "Support/iterator"
#include <stack>
#include <set>