[llvm-commits] [llvm] r78814 - /llvm/trunk/lib/Analysis/DbgInfoPrinter.cpp
Dan Gohman
gohman at apple.com
Wed Aug 12 09:48:27 PDT 2009
Author: djg
Date: Wed Aug 12 11:48:27 2009
New Revision: 78814
URL: http://llvm.org/viewvc/llvm-project?rev=78814&view=rev
Log:
Fix a missing newline (now that Value*'s operator<< doesn't append one).
Modified:
llvm/trunk/lib/Analysis/DbgInfoPrinter.cpp
Modified: llvm/trunk/lib/Analysis/DbgInfoPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/DbgInfoPrinter.cpp?rev=78814&r1=78813&r2=78814&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/DbgInfoPrinter.cpp (original)
+++ llvm/trunk/lib/Analysis/DbgInfoPrinter.cpp Wed Aug 12 11:48:27 2009
@@ -152,7 +152,7 @@
Printed = true;
}
- Out << *i;
+ Out << *i << '\n';
printVariableDeclaration(i);
if (const User *U = dyn_cast<User>(i)) {
More information about the llvm-commits
mailing list