diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:23:58 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:23:58 +0000 |
commit | 575bc3ba624639d164f889fc8da6acd7c52ffc31 (patch) | |
tree | f9cbab7c384bbd496bc5e8ea9aa872377c665e21 /clang/unittests/CodeGen/BufferSourceTest.cpp | |
parent | d9903888d9151325c8bdaa6c9c44bc0cb0980ff6 (diff) | |
download | llvm-575bc3ba624639d164f889fc8da6acd7c52ffc31.zip llvm-575bc3ba624639d164f889fc8da6acd7c52ffc31.tar.gz llvm-575bc3ba624639d164f889fc8da6acd7c52ffc31.tar.bz2 |
[cleanup] Re-sort the #include lines using llvm/utils/sort_includes.py
No functionality changed, this is a purely mechanical cleanup to ensure
the #include order remains consistent across the project.
llvm-svn: 225975
Diffstat (limited to 'clang/unittests/CodeGen/BufferSourceTest.cpp')
-rw-r--r-- | clang/unittests/CodeGen/BufferSourceTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/unittests/CodeGen/BufferSourceTest.cpp b/clang/unittests/CodeGen/BufferSourceTest.cpp index f9d0991..8169a6d 100644 --- a/clang/unittests/CodeGen/BufferSourceTest.cpp +++ b/clang/unittests/CodeGen/BufferSourceTest.cpp @@ -10,16 +10,16 @@ #include "clang/AST/ASTConsumer.h" #include "clang/AST/ASTContext.h" #include "clang/AST/RecursiveASTVisitor.h" +#include "clang/Basic/TargetInfo.h" +#include "clang/CodeGen/ModuleBuilder.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Lex/Preprocessor.h" -#include "clang/CodeGen/ModuleBuilder.h" -#include "clang/Sema/Sema.h" #include "clang/Parse/ParseAST.h" -#include "clang/Basic/TargetInfo.h" +#include "clang/Sema/Sema.h" #include "llvm/ADT/Triple.h" +#include "llvm/IR/LLVMContext.h" #include "llvm/Support/Host.h" #include "llvm/Support/MemoryBuffer.h" -#include "llvm/IR/LLVMContext.h" #include "gtest/gtest.h" using namespace llvm; |