From: Dan Gohman Date: Wed, 26 Aug 2009 14:34:12 +0000 (+0000) Subject: Fix a missing newline, now that Value's operator<< doesn't add one of its own. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e2cb91203917152ea462073628f1597c3d54aa37;p=oota-llvm.git 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 074f99ec75c..bb95c01e2ea 100644 --- 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'; } }