diff options
author | Anders Carlsson <andersca@mac.com> | 2009-10-11 22:13:54 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-10-11 22:13:54 +0000 |
commit | 2bb27f53e0010d75cce6e020fe8c40edbb45cfcb (patch) | |
tree | d010b1854cb6875206958fe26415a50dbf047a53 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 6e6ac4712551b60b54708eda7f85ab30f193cddd (diff) | |
download | bcm5719-llvm-2bb27f53e0010d75cce6e020fe8c40edbb45cfcb.tar.gz bcm5719-llvm-2bb27f53e0010d75cce6e020fe8c40edbb45cfcb.zip |
Move the vtable builder to CGVtable.cpp, general cleanup.
llvm-svn: 83798
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 800600f4b78..1958bf4ecbd 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -39,7 +39,8 @@ CodeGenModule::CodeGenModule(ASTContext &C, const CompileOptions &compileOpts, Diagnostic &diags) : BlockModule(C, M, TD, Types, *this), Context(C), Features(C.getLangOptions()), CompileOpts(compileOpts), TheModule(M), - TheTargetData(TD), Diags(diags), Types(C, M, TD), MangleCtx(C), Runtime(0), + TheTargetData(TD), Diags(diags), Types(C, M, TD), MangleCtx(C), + VtableInfo(*this), Runtime(0), MemCpyFn(0), MemMoveFn(0), MemSetFn(0), CFConstantStringClassRef(0), VMContext(M.getContext()) { |