diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:37:14 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:37:14 +0000 |
commit | 91d19d8e930a955766fa69f1d847be89ead2f8c4 (patch) | |
tree | 272c55fc7295bc35478b35bde0c50b8161ebbb8d /llvm/utils/yaml-bench/YAMLBench.cpp | |
parent | 130cec21b9030cc83837f256276edfefdf6721da (diff) | |
download | bcm5719-llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.tar.gz bcm5719-llvm-91d19d8e930a955766fa69f1d847be89ead2f8c4.zip |
Sort the #include lines for utils/...
I've tried to find main moudle headers where possible, but the TableGen
stuff may warrant someone else looking at it.
llvm-svn: 169251
Diffstat (limited to 'llvm/utils/yaml-bench/YAMLBench.cpp')
-rw-r--r-- | llvm/utils/yaml-bench/YAMLBench.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/yaml-bench/YAMLBench.cpp b/llvm/utils/yaml-bench/YAMLBench.cpp index e5ee52a16d9..eef4a725a1a 100644 --- a/llvm/utils/yaml-bench/YAMLBench.cpp +++ b/llvm/utils/yaml-bench/YAMLBench.cpp @@ -17,11 +17,11 @@ #include "llvm/Support/Casting.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/MemoryBuffer.h" -#include "llvm/Support/raw_ostream.h" #include "llvm/Support/SourceMgr.h" -#include "llvm/Support/system_error.h" #include "llvm/Support/Timer.h" #include "llvm/Support/YAMLParser.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/system_error.h" using namespace llvm; |