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/CGExprScalar.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/CGExprScalar.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprScalar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprScalar.cpp b/clang/lib/CodeGen/CGExprScalar.cpp index 4980f53cc4d..f53bb33e463 100644 --- a/clang/lib/CodeGen/CGExprScalar.cpp +++ b/clang/lib/CodeGen/CGExprScalar.cpp @@ -23,9 +23,9 @@ #include "clang/AST/Expr.h" #include "clang/AST/RecordLayout.h" #include "clang/AST/StmtVisitor.h" +#include "clang/Basic/CodeGenOptions.h" #include "clang/Basic/FixedPoint.h" #include "clang/Basic/TargetInfo.h" -#include "clang/Frontend/CodeGenOptions.h" #include "llvm/ADT/Optional.h" #include "llvm/IR/CFG.h" #include "llvm/IR/Constants.h" |