Replace the -unwind-tables option with a per function flag. This is more
[oota-llvm.git] / lib / Target / CppBackend / CPPBackend.cpp
index 38de3b6888f0536b49b581e3a84abdad3ab13ace..797cfd597e602211b46991e17a9bceb6b18ca073 100644 (file)
@@ -1348,7 +1348,7 @@ void CppWriter::printInstruction(const Instruction *I,
     const PHINode* phi = cast<PHINode>(I);
 
     Out << "PHINode* " << iName << " = PHINode::Create("
-        << getCppName(phi->getType()) << ", \""
+        << getCppName(phi->getType()) << ", "
         << phi->getNumIncomingValues() << ", \"";
     printEscapedString(phi->getName());
     Out << "\", " << bbname << ");";