diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:45:34 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:45:34 +0000 |
commit | 320d9666eeab256ecaec2e2c1676bbb40f3aac9e (patch) | |
tree | 7a266d7fe3968e36638134a11cfe74d11b563bf8 /clang/unittests/Frontend/FrontendActionTest.cpp | |
parent | ed09f456e7e99076fc3490cde3d59201f3328c12 (diff) | |
download | bcm5719-llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.tar.gz bcm5719-llvm-320d9666eeab256ecaec2e2c1676bbb40f3aac9e.zip |
Sort the #include lines for unittests/...
I've tried to place sensible headers at the top as main-module headers.
llvm-svn: 169243
Diffstat (limited to 'clang/unittests/Frontend/FrontendActionTest.cpp')
-rw-r--r-- | clang/unittests/Frontend/FrontendActionTest.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/unittests/Frontend/FrontendActionTest.cpp b/clang/unittests/Frontend/FrontendActionTest.cpp index 84a65450baf..5b36c67d594 100644 --- a/clang/unittests/Frontend/FrontendActionTest.cpp +++ b/clang/unittests/Frontend/FrontendActionTest.cpp @@ -7,16 +7,14 @@ // //===----------------------------------------------------------------------===// +#include "clang/Frontend/FrontendAction.h" #include "clang/AST/RecursiveASTVisitor.h" -#include "clang/AST/ASTContext.h" #include "clang/AST/ASTConsumer.h" +#include "clang/AST/ASTContext.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/CompilerInvocation.h" -#include "clang/Frontend/FrontendAction.h" - #include "llvm/ADT/Triple.h" #include "llvm/Support/MemoryBuffer.h" - #include "gtest/gtest.h" using namespace llvm; |