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
This commit is contained in:
Dan Gohman 2009-08-26 14:34:12 +00:00
parent a8c711cb23
commit e2cb912039

View 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';
}
}