diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-06-23 12:11:37 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-06-23 12:11:37 +0000 |
commit | f4907266331c9a25781d62de328726cc83ab932e (patch) | |
tree | ea80aa73a23caf54fc58f5cbddfb42de9cc4c313 /llvm/lib/Target/CppBackend/CPPBackend.cpp | |
parent | 61ea0e469254e0c7ab0e190b463d994b9316846c (diff) | |
download | bcm5719-llvm-f4907266331c9a25781d62de328726cc83ab932e.tar.gz bcm5719-llvm-f4907266331c9a25781d62de328726cc83ab932e.zip |
CppBackend: fixup for api change
This broke after r133364.
llvm-svn: 133709
Diffstat (limited to 'llvm/lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index 0d15514d8cf..ae03725e4cf 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -586,7 +586,6 @@ bool CppWriter::printTypeInternal(const Type* Ty) { nl(Out); } Out << "StructType* " << typeName << " = StructType::get(" - << "mod->getContext(), " << typeName << "_fields, /*isPacked=*/" << (ST->isPacked() ? "true" : "false") << ");"; nl(Out); |