diff options
author | John McCall <rjmccall@apple.com> | 2017-03-02 20:04:19 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2017-03-02 20:04:19 +0000 |
commit | 5ad740756f7a61e6ee58727df8e40e1ba1af5986 (patch) | |
tree | 0a07d0f5833a717f79d5a760f728042bec1fd239 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 6ab12b3c14db476e95fbacd5884a3b6d24fcace9 (diff) | |
download | bcm5719-llvm-5ad740756f7a61e6ee58727df8e40e1ba1af5986.tar.gz bcm5719-llvm-5ad740756f7a61e6ee58727df8e40e1ba1af5986.zip |
Promote ConstantInitBuilder to be a public CodeGen API; it's
a generally useful utility for other frontends. NFC.
llvm-svn: 296806
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 62613d82ab8..a3920e1add4 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -24,7 +24,6 @@ #include "CodeGenFunction.h" #include "CodeGenPGO.h" #include "CodeGenTBAA.h" -#include "ConstantBuilder.h" #include "CoverageMappingGen.h" #include "TargetInfo.h" #include "clang/AST/ASTContext.h" @@ -42,6 +41,7 @@ #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/Sema/SemaDiagnostic.h" #include "llvm/ADT/Triple.h" |