projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8c711c
)
Fix a missing newline, now that Value's operator<< doesn't add one of its own.
author
Dan Gohman
<gohman@apple.com>
Wed, 26 Aug 2009 14:34:12 +0000
(14:34 +0000)
committer
Dan Gohman
<gohman@apple.com>
Wed, 26 Aug 2009 14:34:12 +0000
(14:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80096
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Analysis/AliasAnalysisEvaluator.cpp
patch
|
blob
|
history
diff --git
a/lib/Analysis/AliasAnalysisEvaluator.cpp
b/lib/Analysis/AliasAnalysisEvaluator.cpp
index 074f99ec75ccadc578d00446b004ff9ba05ec8c3..bb95c01e2ea9ec7808f0f56add07b991a402cfb2 100644
(file)
--- a/
lib/Analysis/AliasAnalysisEvaluator.cpp
+++ b/
lib/Analysis/AliasAnalysisEvaluator.cpp
@@
-104,7
+104,7
@@
PrintModRefResults(const char *Msg, bool P, Instruction *I, Value *Ptr,
if (P) {
errs() << " " << Msg << ": Ptr: ";
WriteAsOperand(errs(), Ptr, true, M);
- errs() << "\t<->" << *I;
+ errs() << "\t<->" << *I
<< '\n'
;
}
}