Add a space to the PHI node output code to make it look nicer
authorChris Lattner <sabre@nondot.org>
Thu, 21 Jun 2001 05:29:56 +0000 (05:29 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 21 Jun 2001 05:29:56 +0000 (05:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index 6d32edc31959a0286c8e6186c6780ac649194501..97affccfbcdbba0fb9b51b756a92911b2dc51297 100644 (file)
@@ -182,10 +182,10 @@ bool AssemblyWriter::processInstruction(const Instruction *I) {
     Out << " " << Operand->getType();
 
     Out << " [";  writeOperand(Operand, false); Out << ",";
-    writeOperand(I->getOperand(1), false); Out << "]";
+    writeOperand(I->getOperand(1), false); Out << " ]";
     for (unsigned op = 2; (Operand = I->getOperand(op)); op += 2) {
       Out << ", [";  writeOperand(Operand, false); Out << ",";
-      writeOperand(I->getOperand(op+1), false); Out << "]";
+      writeOperand(I->getOperand(op+1), false); Out << " ]";
     }
   } else if (I->getInstType() == Instruction::Ret && !Operand) {
     Out << " void";