diff options
author | Nicolas Geoffray <nicolas.geoffray@lip6.fr> | 2009-08-06 21:31:35 +0000 |
---|---|---|
committer | Nicolas Geoffray <nicolas.geoffray@lip6.fr> | 2009-08-06 21:31:35 +0000 |
commit | 6f62cffd63ba698fafe8a89470b0c02c4586d991 (patch) | |
tree | c1b2443a8715ead2568cc7bc55f3628d8afd814b /lib/Target/CppBackend/CPPBackend.cpp | |
parent | 31f5591c91d4c012901018013aba19b0015fa6a0 (diff) |
Output the new StructType constructor, which takes the context of the
module as first argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78340 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index 3e9c29ec26..c467ead8bb 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -575,6 +575,7 @@ namespace { nl(Out); } Out << "StructType* " << typeName << " = StructType::get(" + << "mod->getContext(), " << typeName << "_fields, /*isPacked=*/" << (ST->isPacked() ? "true" : "false") << ");"; nl(Out); |