Change printInstruction to not print a trailing newline. Value::dump

always adds a newline, so this fixes Value::dump printing an
extra blank line.

llvm-svn: 75481
This commit is contained in:
Dan Gohman 2009-07-13 18:27:59 +00:00
parent 9a19e608d4
commit 21f79b4239

View File

@ -1620,8 +1620,10 @@ void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
// Output all of the instructions in the basic block...
for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
printInstruction(*I);
Out << '\n';
}
if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
}
@ -1903,7 +1905,6 @@ void AssemblyWriter::printInstruction(const Instruction &I) {
}
printInfoComment(I);
Out << '\n';
}