forked from OSchip/llvm-project
Fix a missing newline, now that Value's operator<< doesn't add one of its own.
llvm-svn: 80096
This commit is contained in:
parent
0672e92e92
commit
331b99888e
|
@ -104,7 +104,7 @@ PrintModRefResults(const char *Msg, bool P, Instruction *I, Value *Ptr,
|
||||||
if (P) {
|
if (P) {
|
||||||
errs() << " " << Msg << ": Ptr: ";
|
errs() << " " << Msg << ": Ptr: ";
|
||||||
WriteAsOperand(errs(), Ptr, true, M);
|
WriteAsOperand(errs(), Ptr, true, M);
|
||||||
errs() << "\t<->" << *I;
|
errs() << "\t<->" << *I << '\n';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue