commit | 0c0932f5e2c185ceeee7036eaae7abb530c13fe3 | [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 | bfbc1de72f7f06d1109735feba485bf8f09239ac [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)) {