Fix a missing newline (now that Value*'s operator<< doesn't append one).
authorDan Gohman <gohman@apple.com>
Wed, 12 Aug 2009 16:48:27 +0000 (16:48 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 12 Aug 2009 16:48:27 +0000 (16:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78814 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DbgInfoPrinter.cpp

index 6c549e6345e649a17bab1c893b40c9ff96d0ac85..913490d604a3640a209eeb667c9c71877cd5a386 100644 (file)
@@ -152,7 +152,7 @@ bool PrintDbgInfo::runOnFunction(Function &F) {
           Printed = true;
         }
 
-        Out << *i;
+        Out << *i << '\n';
         printVariableDeclaration(i);
 
         if (const User *U = dyn_cast<User>(i)) {