diff options
author | Richard Trieu <rtrieu@google.com> | 2018-12-11 03:18:39 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2018-12-11 03:18:39 +0000 |
commit | 6368818fd572b49ecb062906ed4a379bca4447df (patch) | |
tree | b682df90e74fb68785796483b0c7b25ff8c9cf8e /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 0b3ddec7eda5c09d90fac18e37db8793960e00e4 (diff) | |
download | bcm5719-llvm-6368818fd572b49ecb062906ed4a379bca4447df.tar.gz bcm5719-llvm-6368818fd572b49ecb062906ed4a379bca4447df.zip |
Move CodeGenOptions from Frontend to Basic
Basic uses CodeGenOptions and should not depend on Frontend.
llvm-svn: 348827
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index b80a43b7eb2..ce4558fac4b 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -36,13 +36,13 @@ #include "clang/AST/RecursiveASTVisitor.h" #include "clang/Basic/Builtins.h" #include "clang/Basic/CharInfo.h" +#include "clang/Basic/CodeGenOptions.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/Module.h" #include "clang/Basic/SourceManager.h" #include "clang/Basic/TargetInfo.h" #include "clang/Basic/Version.h" #include "clang/CodeGen/ConstantInitBuilder.h" -#include "clang/Frontend/CodeGenOptions.h" #include "clang/Frontend/FrontendDiagnostic.h" #include "llvm/ADT/StringSwitch.h" #include "llvm/ADT/Triple.h" |