diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 07:12:27 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 07:12:27 +0000 |
commit | a1514e24cc24b050f53a12650e047799358833a1 (patch) | |
tree | 44eeca62c167ea741c93dfdc7ed31b3094d20c32 /lib/VMCore | |
parent | e6f2df961065e3b723ef0fc78441f07c5577acd2 (diff) | |
download | external_llvm-a1514e24cc24b050f53a12650e047799358833a1.zip external_llvm-a1514e24cc24b050f53a12650e047799358833a1.tar.gz external_llvm-a1514e24cc24b050f53a12650e047799358833a1.tar.bz2 |
Sort includes for all of the .h files under the 'lib' tree. These were
missed in the first pass because the script didn't yet handle include
guards.
Note that the script is now able to handle all of these headers without
manual edits. =]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/AttributesImpl.h | 2 | ||||
-rw-r--r-- | lib/VMCore/LLVMContextImpl.h | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/VMCore/AttributesImpl.h b/lib/VMCore/AttributesImpl.h index 5c107e1..193e873 100644 --- a/lib/VMCore/AttributesImpl.h +++ b/lib/VMCore/AttributesImpl.h @@ -15,8 +15,8 @@ #ifndef LLVM_ATTRIBUTESIMPL_H #define LLVM_ATTRIBUTESIMPL_H -#include "llvm/Attributes.h" #include "llvm/ADT/FoldingSet.h" +#include "llvm/Attributes.h" namespace llvm { diff --git a/lib/VMCore/LLVMContextImpl.h b/lib/VMCore/LLVMContextImpl.h index d4c28b4..aafbfc4 100644 --- a/lib/VMCore/LLVMContextImpl.h +++ b/lib/VMCore/LLVMContextImpl.h @@ -15,22 +15,22 @@ #ifndef LLVM_LLVMCONTEXT_IMPL_H #define LLVM_LLVMCONTEXT_IMPL_H -#include "llvm/LLVMContext.h" #include "AttributesImpl.h" #include "ConstantsContext.h" #include "LeaksContext.h" -#include "llvm/Constants.h" -#include "llvm/DerivedTypes.h" -#include "llvm/Metadata.h" -#include "llvm/Support/ValueHandle.h" #include "llvm/ADT/APFloat.h" #include "llvm/ADT/APInt.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/FoldingSet.h" +#include "llvm/ADT/Hashing.h" #include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/StringMap.h" -#include "llvm/ADT/Hashing.h" +#include "llvm/Constants.h" +#include "llvm/DerivedTypes.h" +#include "llvm/LLVMContext.h" +#include "llvm/Metadata.h" +#include "llvm/Support/ValueHandle.h" #include <vector> namespace llvm { |