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 | f087c0c1c6f673334831c6a5ce46cb6d48be1de5 (patch) | |
tree | 1c8de69fba0c83b550e296029870f996bc8b7454 /clang/CodeGen/CodeGenModule.cpp | |
parent | d1fcfcc76c4239b3935e9d9aa743c564133b61cf (diff) | |
download | bcm5719-llvm-f087c0c1c6f673334831c6a5ce46cb6d48be1de5.tar.gz bcm5719-llvm-f087c0c1c6f673334831c6a5ce46cb6d48be1de5.zip |
Add preliminary support for converting struct types.
llvm-svn: 41145
Diffstat (limited to 'clang/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/CodeGen/CodeGenModule.cpp b/clang/CodeGen/CodeGenModule.cpp index a1a498b0828..44cb91dd1de 100644 --- a/clang/CodeGen/CodeGenModule.cpp +++ b/clang/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. |