Fix some issues with param attrs.
authorReid Spencer <rspencer@reidspencer.com>
Wed, 11 Apr 2007 10:01:32 +0000 (10:01 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Wed, 11 Apr 2007 10:01:32 +0000 (10:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35894 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm2cpp/CppWriter.cpp

index a2f02c3f202b20973ddf67bd7c01019cc68d83ff..d954ccb948572e336c75e78ba59f58e94d7180d8 100644 (file)
@@ -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;