Fix a missing newline, now that Value's operator<< doesn't add one of its own.

llvm-svn: 80096
This commit is contained in:
Dan Gohman 2009-08-26 14:34:12 +00:00
parent 0672e92e92
commit 331b99888e
1 changed files with 1 additions and 1 deletions

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