From: Misha Brukman Date: Fri, 2 Jan 2009 22:49:28 +0000 (+0000) Subject: Alphabetized #includes. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=5679d18c54ef46170e46f51bf471bb334f2b6525;p=oota-llvm.git Alphabetized #includes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61595 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp index b8fb05c889d..6a3777dedd8 100644 --- a/lib/AsmParser/LLLexer.cpp +++ b/lib/AsmParser/LLLexer.cpp @@ -18,8 +18,8 @@ #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Assembly/Parser.h" -#include #include +#include using namespace llvm; bool LLLexer::Error(LocTy ErrorLoc, const std::string &Msg) const { diff --git a/lib/AsmParser/LLLexer.h b/lib/AsmParser/LLLexer.h index 289c38721d0..5e9843ccec8 100644 --- a/lib/AsmParser/LLLexer.h +++ b/lib/AsmParser/LLLexer.h @@ -17,10 +17,9 @@ #include "LLToken.h" #include "llvm/ADT/APSInt.h" #include "llvm/ADT/APFloat.h" - -#include -#include #include +#include +#include namespace llvm { class MemoryBuffer;