commit | 52fd7da29594af15650f99de2bb7e2f2872d1619 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Mon Mar 01 17:42:55 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Mon Mar 01 17:42:55 2010 +0000 |
tree | 2ca6b4cffaa18de310d14063b4ca49e7af916d9b | |
parent | fd6f338ab1d3597b303fbdffd0f13773904bb079 [diff] [blame] |
Fix a missing newline in debug output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97449 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/AliasAnalysisCounter.cpp b/lib/Analysis/AliasAnalysisCounter.cpp index 761cd46..1053955 100644 --- a/lib/Analysis/AliasAnalysisCounter.cpp +++ b/lib/Analysis/AliasAnalysisCounter.cpp
@@ -162,7 +162,7 @@ errs() << MRString << ": Ptr: "; errs() << "[" << Size << "B] "; WriteAsOperand(errs(), P, true, M); - errs() << "\t<->" << *CS.getInstruction(); + errs() << "\t<->" << *CS.getInstruction() << '\n'; } return R; }