aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-12 16:48:27 +0000
committerDan Gohman <gohman@apple.com>2009-08-12 16:48:27 +0000
commit0c0932f5e2c185ceeee7036eaae7abb530c13fe3 (patch)
treed333a14efb9cc2df1f6b020e928cb08e72baad8f /lib/Analysis
parentbfbc1de72f7f06d1109735feba485bf8f09239ac (diff)
downloadexternal_llvm-0c0932f5e2c185ceeee7036eaae7abb530c13fe3.zip
external_llvm-0c0932f5e2c185ceeee7036eaae7abb530c13fe3.tar.gz
external_llvm-0c0932f5e2c185ceeee7036eaae7abb530c13fe3.tar.bz2
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
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/DbgInfoPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
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 @@ bool PrintDbgInfo::runOnFunction(Function &F) {
Printed = true;
}
- Out << *i;
+ Out << *i << '\n';
printVariableDeclaration(i);
if (const User *U = dyn_cast<User>(i)) {