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/CodeGenFunction.h | |
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/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 9b802991e70..5303f3ccea7 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -29,9 +29,9 @@ #include "clang/AST/Type.h" #include "clang/Basic/ABI.h" #include "clang/Basic/CapturedStmt.h" +#include "clang/Basic/CodeGenOptions.h" #include "clang/Basic/OpenMPKinds.h" #include "clang/Basic/TargetInfo.h" -#include "clang/Frontend/CodeGenOptions.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/MapVector.h" |