diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2016-07-18 19:02:11 +0000 |
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-07-18 19:02:11 +0000 |
| commit | 9670f847b8c5f6eb42c3df74035809f95465b5fb (patch) | |
| tree | c6aba23799aaf9725ff3163d1d2f39266d4fa4d0 /clang/unittests/Frontend | |
| parent | 210b7cf3e2592cd3c2ea227a9ee5ebd4a72e3ed5 (diff) | |
| download | bcm5719-llvm-9670f847b8c5f6eb42c3df74035809f95465b5fb.tar.gz bcm5719-llvm-9670f847b8c5f6eb42c3df74035809f95465b5fb.zip | |
[NFC] Header cleanup
Summary: Removed unused headers, replaced some headers with forward class declarations
Patch by: Eugene <claprix@yandex.ru>
Differential Revision: https://reviews.llvm.org/D20100
llvm-svn: 275882
Diffstat (limited to 'clang/unittests/Frontend')
| -rw-r--r-- | clang/unittests/Frontend/CodeGenActionTest.cpp | 5 | ||||
| -rw-r--r-- | clang/unittests/Frontend/FrontendActionTest.cpp | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/clang/unittests/Frontend/CodeGenActionTest.cpp b/clang/unittests/Frontend/CodeGenActionTest.cpp index 71446fd4d79..356b5130fcb 100644 --- a/clang/unittests/Frontend/CodeGenActionTest.cpp +++ b/clang/unittests/Frontend/CodeGenActionTest.cpp @@ -11,9 +11,10 @@ // //===----------------------------------------------------------------------===// -#include "clang/Frontend/CompilerInstance.h" -#include "clang/CodeGen/CodeGenAction.h" #include "clang/CodeGen/BackendUtil.h" +#include "clang/CodeGen/CodeGenAction.h" +#include "clang/Frontend/CompilerInstance.h" +#include "clang/Lex/PreprocessorOptions.h" #include "gtest/gtest.h" using namespace llvm; diff --git a/clang/unittests/Frontend/FrontendActionTest.cpp b/clang/unittests/Frontend/FrontendActionTest.cpp index 90afd774f1a..39a131f4a64 100644 --- a/clang/unittests/Frontend/FrontendActionTest.cpp +++ b/clang/unittests/Frontend/FrontendActionTest.cpp @@ -7,13 +7,14 @@ // //===----------------------------------------------------------------------===// -#include "clang/Frontend/FrontendAction.h" #include "clang/AST/ASTConsumer.h" #include "clang/AST/ASTContext.h" #include "clang/AST/RecursiveASTVisitor.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/CompilerInvocation.h" +#include "clang/Frontend/FrontendAction.h" #include "clang/Lex/Preprocessor.h" +#include "clang/Lex/PreprocessorOptions.h" #include "clang/Sema/Sema.h" #include "llvm/ADT/Triple.h" #include "llvm/Support/MemoryBuffer.h" |

