commit | 596114dc06489e5bd79e3e8ffc60d43bbf3668e3 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Aug 26 14:34:12 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Aug 26 14:34:12 2009 +0000 |
tree | 35e9becd306a403479dd870bf5a555c3fc8f2273 | |
parent | 84c793aef4170e0d5be4d2c6fcb26a9e56cad21b [diff] [blame] |
Fix a missing newline, now that Value's operator<< doesn't add one of its own. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80096 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/AliasAnalysisEvaluator.cpp b/lib/Analysis/AliasAnalysisEvaluator.cpp index 074f99e..bb95c01 100644 --- a/lib/Analysis/AliasAnalysisEvaluator.cpp +++ b/lib/Analysis/AliasAnalysisEvaluator.cpp
@@ -104,7 +104,7 @@ if (P) { errs() << " " << Msg << ": Ptr: "; WriteAsOperand(errs(), Ptr, true, M); - errs() << "\t<->" << *I; + errs() << "\t<->" << *I << '\n'; } }