diff options
author | Mike Stump <mrs@apple.com> | 2009-03-04 18:47:42 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-04 18:47:42 +0000 |
commit | 6c39666a77d4a57ff003ba127f8489aec6f74849 (patch) | |
tree | 9c5e9b0cd178b6ee8d235a6aa24b26cf9cb59fdf /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | d1b64be776a12cf281dd237ee68f8235b2edc513 (diff) | |
download | bcm5719-llvm-6c39666a77d4a57ff003ba127f8489aec6f74849.tar.gz bcm5719-llvm-6c39666a77d4a57ff003ba127f8489aec6f74849.zip |
Move more of the blocks code up and out.
llvm-svn: 66046
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 c0dba74ad02..422415c2e24 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -34,7 +34,7 @@ using namespace CodeGen; CodeGenModule::CodeGenModule(ASTContext &C, const LangOptions &LO, llvm::Module &M, const llvm::TargetData &TD, Diagnostic &diags, bool GenerateDebugInfo) - : BlockModule(C, M, Types), Context(C), Features(LO), TheModule(M), + : BlockModule(C, M, TD, Types, *this), Context(C), Features(LO), TheModule(M), TheTargetData(TD), Diags(diags), Types(C, M, TD), Runtime(0), MemCpyFn(0), MemMoveFn(0), MemSetFn(0), CFConstantStringClassRef(0) { |