From: Nick Lewycky Date: Sat, 17 Oct 2009 19:43:45 +0000 (+0000) Subject: Emit newlines at the end of instructions too. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2bb6f6ae7adce90c87453fc333ef2b4d24ac71aa;p=oota-llvm.git Emit newlines at the end of instructions too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84348 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 75ea4c3e2f2..3bfd47c67c3 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -339,10 +339,10 @@ namespace { void WriteValue(const Value *V) { if (!V) return; if (isa(V)) { - MessagesStr << *V; + MessagesStr << *V << '\n'; } else { WriteAsOperand(MessagesStr, V, true, Mod); - MessagesStr << "\n"; + MessagesStr << '\n'; } }