commit | 862c61f53473b878832d4ea2b63af0ac8e37f5e1 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Aug 12 16:48:27 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Aug 12 16:48:27 2009 +0000 |
tree | d333a14efb9cc2df1f6b020e928cb08e72baad8f | |
parent | 677ac685f839c294ca8566e4872890d5a8b38a80 [diff] [blame] |
Fix a missing newline (now that Value*'s operator<< doesn't append one). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78814 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/DbgInfoPrinter.cpp b/lib/Analysis/DbgInfoPrinter.cpp index 6c549e6..913490d 100644 --- a/lib/Analysis/DbgInfoPrinter.cpp +++ b/lib/Analysis/DbgInfoPrinter.cpp
@@ -152,7 +152,7 @@ Printed = true; } - Out << *i; + Out << *i << '\n'; printVariableDeclaration(i); if (const User *U = dyn_cast<User>(i)) {