summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-01-02 22:49:28 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-01-02 22:49:28 +0000
commit5679d18c54ef46170e46f51bf471bb334f2b6525 (patch)
treef2523401427da866d2c922fbcf196288a85c69e9 /lib
parent9ea4034e007a83c778cd306ea66481be1317a51b (diff)
downloadllvm-5679d18c54ef46170e46f51bf471bb334f2b6525.tar.gz
llvm-5679d18c54ef46170e46f51bf471bb334f2b6525.tar.bz2
llvm-5679d18c54ef46170e46f51bf471bb334f2b6525.tar.xz
Alphabetized #includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/AsmParser/LLLexer.cpp2
-rw-r--r--lib/AsmParser/LLLexer.h5
2 files changed, 3 insertions, 4 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp
index b8fb05c889..6a3777dedd 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 <cstring>
#include <cstdlib>
+#include <cstring>
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 289c38721d..5e9843ccec 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 <vector>
-#include <string>
#include <iosfwd>
+#include <string>
+#include <vector>
namespace llvm {
class MemoryBuffer;