Fix a missing newline in debug output.
authorDan Gohman <gohman@apple.com>
Mon, 1 Mar 2010 17:42:55 +0000 (17:42 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 1 Mar 2010 17:42:55 +0000 (17:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97449 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/AliasAnalysisCounter.cpp

index 761cd46783f648c1df294a4f290eff42b49d0beb..1053955ea23397654a33b904b7a8742e1dc26087 100644 (file)
@@ -162,7 +162,7 @@ AliasAnalysisCounter::getModRefInfo(CallSite CS, Value *P, unsigned Size) {
     errs() << MRString << ":  Ptr: ";
     errs() << "[" << Size << "B] ";
     WriteAsOperand(errs(), P, true, M);
-    errs() << "\t<->" << *CS.getInstruction();
+    errs() << "\t<->" << *CS.getInstruction() << '\n';
   }
   return R;
 }