diff options
Diffstat (limited to 'llvm/include/Support')
-rw-r--r-- | llvm/include/Support/DepthFirstIterator.h | 2 | ||||
-rw-r--r-- | llvm/include/Support/HashExtras.h | 2 | ||||
-rw-r--r-- | llvm/include/Support/MathExtras.h | 2 | ||||
-rw-r--r-- | llvm/include/Support/PostOrderIterator.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/Support/DepthFirstIterator.h b/llvm/include/Support/DepthFirstIterator.h index e0782ac83aa..7ae4b9dc6ff 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 5887a831162..68a49eac9e9 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 d9076580b7e..d73394149ba 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 a9f13da03de..507f4c2a0b2 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> |