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 | 802d755533eb333b8850915ce09af1088a5f1672 (patch) | |
| tree | 9013934c0a2c4f8c436f59a64bb09ea9c52cd767 /llvm/lib/Bitcode/Reader/BitcodeReader.h | |
| parent | 07674cb566e50abf5e09cb54b0f0f745782fd4b1 (diff) | |
| download | llvm-802d755533eb333b8850915ce09af1088a5f1672.zip llvm-802d755533eb333b8850915ce09af1088a5f1672.tar.gz llvm-802d755533eb333b8850915ce09af1088a5f1672.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. =]
llvm-svn: 169224
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.h')
| -rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.h b/llvm/lib/Bitcode/Reader/BitcodeReader.h index f3b516e..34e96b0 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.h +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.h @@ -14,14 +14,14 @@ #ifndef BITCODE_READER_H #define BITCODE_READER_H -#include "llvm/GVMaterializer.h" +#include "llvm/ADT/DenseMap.h" #include "llvm/Attributes.h" -#include "llvm/Type.h" -#include "llvm/OperandTraits.h" #include "llvm/Bitcode/BitstreamReader.h" #include "llvm/Bitcode/LLVMBitCodes.h" +#include "llvm/GVMaterializer.h" +#include "llvm/OperandTraits.h" #include "llvm/Support/ValueHandle.h" -#include "llvm/ADT/DenseMap.h" +#include "llvm/Type.h" #include <vector> namespace llvm { |
