diff options
author | Anders Carlsson <andersca@mac.com> | 2007-08-17 22:00:32 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-08-17 22:00:32 +0000 |
commit | 4e533287e6a9adac78c9ac370612581aad9b8c5e (patch) | |
tree | e27e5366851f32119ce5acd9d991dee60340b3f2 /CodeGen/CodeGenModule.cpp | |
parent | 06de276fff91264437fa75111ed76de43097e089 (diff) |
Add preliminary support for converting struct types.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenModule.cpp')
-rw-r--r-- | CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen/CodeGenModule.cpp b/CodeGen/CodeGenModule.cpp index a1a498b082..44cb91dd1d 100644 --- a/CodeGen/CodeGenModule.cpp +++ b/CodeGen/CodeGenModule.cpp @@ -26,7 +26,7 @@ using namespace CodeGen; CodeGenModule::CodeGenModule(ASTContext &C, llvm::Module &M) - : Context(C), TheModule(M), Types(C) {} + : Context(C), TheModule(M), Types(C, M) {} llvm::Constant *CodeGenModule::GetAddrOfGlobalDecl(const Decl *D) { // See if it is already in the map. |