From 09b311f42fe2f172619d253174a09e33fd300bb6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 12 Aug 2009 16:48:27 +0000 Subject: Fix a missing newline (now that Value*'s operator<< doesn't append one). llvm-svn: 78814 --- llvm/lib/Analysis/DbgInfoPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Analysis/DbgInfoPrinter.cpp') diff --git a/llvm/lib/Analysis/DbgInfoPrinter.cpp b/llvm/lib/Analysis/DbgInfoPrinter.cpp index 6c549e6345e..913490d604a 100644 --- a/llvm/lib/Analysis/DbgInfoPrinter.cpp +++ b/llvm/lib/Analysis/DbgInfoPrinter.cpp @@ -152,7 +152,7 @@ bool PrintDbgInfo::runOnFunction(Function &F) { Printed = true; } - Out << *i; + Out << *i << '\n'; printVariableDeclaration(i); if (const User *U = dyn_cast(i)) { -- cgit v1.2.3