Fix a missing newline, now that Value's operator<< doesn't add one of its own.
authorDan Gohman <gohman@apple.com>
Wed, 26 Aug 2009 14:34:12 +0000 (14:34 +0000)
committerDan 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

index 074f99ec75ccadc578d00446b004ff9ba05ec8c3..bb95c01e2ea9ec7808f0f56add07b991a402cfb2 100644 (file)
@@ -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';
   }
 }