forked from OSchip/llvm-project
Emit newlines at the end of instructions too.
llvm-svn: 84348
This commit is contained in:
parent
548e629e02
commit
e63c2cb3b7
|
@ -339,10 +339,10 @@ namespace {
|
|||
void WriteValue(const Value *V) {
|
||||
if (!V) return;
|
||||
if (isa<Instruction>(V)) {
|
||||
MessagesStr << *V;
|
||||
MessagesStr << *V << '\n';
|
||||
} else {
|
||||
WriteAsOperand(MessagesStr, V, true, Mod);
|
||||
MessagesStr << "\n";
|
||||
MessagesStr << '\n';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue