Move more of the blocks code up and out.

llvm-svn: 66046
This commit is contained in:
Mike Stump
2009-03-04 18:47:42 +00:00
parent d1b64be776
commit 6c39666a77
4 changed files with 16 additions and 10 deletions

View File

@@ -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) {