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 | dbd920c7758e6dfb678a8f503fb14ba97c26f23a (patch) | |
tree | f015cc9fac5b257dbbb40542f5be1eb8030406ba /lib/CodeGen/CodeGenModule.cpp | |
parent | fc3bf4d4d2aea8353541a5710bed2ad00c451b68 (diff) |
Move the vtable builder to CGVtable.cpp, general cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 800600f4b7..1958bf4ecb 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/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()) { |