Give me PHI's space back

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1150 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-11-06 08:33:46 +00:00
parent 04cc49be65
commit eed1fc7973

View File

@ -518,6 +518,7 @@ void AssemblyWriter::printInstruction(const Instruction *I) {
} else if (isa<PHINode>(I)) {
Out << " ";
printType(I->getType());
Out << " ";
for (unsigned op = 0, Eop = I->getNumOperands(); op < Eop; op += 2) {
if (op) Out << ", ";