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/AsmParser | |
parent | 07674cb566e50abf5e09cb54b0f0f745782fd4b1 (diff) | |
download | bcm5719-llvm-802d755533eb333b8850915ce09af1088a5f1672.tar.gz bcm5719-llvm-802d755533eb333b8850915ce09af1088a5f1672.zip |
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/AsmParser')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.h | 2 | ||||
-rw-r--r-- | llvm/lib/AsmParser/LLParser.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.h b/llvm/lib/AsmParser/LLLexer.h index 09aea5b0182..1a307a8becd 100644 --- a/llvm/lib/AsmParser/LLLexer.h +++ b/llvm/lib/AsmParser/LLLexer.h @@ -15,8 +15,8 @@ #define LIB_ASMPARSER_LLLEXER_H #include "LLToken.h" -#include "llvm/ADT/APSInt.h" #include "llvm/ADT/APFloat.h" +#include "llvm/ADT/APSInt.h" #include "llvm/Support/SourceMgr.h" #include <string> diff --git a/llvm/lib/AsmParser/LLParser.h b/llvm/lib/AsmParser/LLParser.h index e481283e6ef..b4cc12b28b0 100644 --- a/llvm/lib/AsmParser/LLParser.h +++ b/llvm/lib/AsmParser/LLParser.h @@ -15,14 +15,14 @@ #define LLVM_ASMPARSER_LLPARSER_H #include "LLLexer.h" +#include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/StringMap.h" #include "llvm/Attributes.h" #include "llvm/Instructions.h" #include "llvm/Module.h" #include "llvm/Operator.h" -#include "llvm/Type.h" -#include "llvm/ADT/DenseMap.h" -#include "llvm/ADT/StringMap.h" #include "llvm/Support/ValueHandle.h" +#include "llvm/Type.h" #include <map> namespace llvm { |