From a9297b1a09ae919c5b13a94350971f873fc92b4c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 11 Apr 2007 10:01:32 +0000 Subject: [PATCH] Fix some issues with param attrs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35894 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm2cpp/CppWriter.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/llvm2cpp/CppWriter.cpp b/tools/llvm2cpp/CppWriter.cpp index a2f02c3f202..d954ccb9485 100644 --- a/tools/llvm2cpp/CppWriter.cpp +++ b/tools/llvm2cpp/CppWriter.cpp @@ -460,8 +460,10 @@ CppWriter::printTypeInternal(const Type* Ty) { } const ParamAttrsList *PAL = FT->getParamAttrs(); Out << "ParamAttrsList *" << typeName << "_PAL = 0;"; + nl(Out); if (PAL && !PAL->empty()) { Out << typeName << "_PAL = new ParamAttrsList();"; + nl(Out); for (unsigned i = 0; i < PAL->size(); ++i) { uint16_t index = PAL->getParamIndex(i); uint16_t attrs = PAL->getParamAttrs(index); @@ -479,6 +481,7 @@ CppWriter::printTypeInternal(const Type* Ty) { if (attrs & ParamAttr::NoUnwind) Out << " | ParamAttr::NoUnwind"; Out << ");"; + nl(Out); } } bool isForward = printTypeInternal(FT->getReturnType()); @@ -490,7 +493,7 @@ CppWriter::printTypeInternal(const Type* Ty) { Out << ","; nl(Out) << "/*Params=*/" << typeName << "_args,"; nl(Out) << "/*isVarArg=*/" << (FT->isVarArg() ? "true" : "false") ; - nl(Out) << "/*ParamAttrs=/" << typeName << "_PAL" << ");"; + nl(Out) << "/*ParamAttrs=*/" << typeName << "_PAL" << ");"; out(); nl(Out); break; -- 2.34.1