Fix a missing newline in debug output.

llvm-svn: 97449
This commit is contained in:
Dan Gohman 2010-03-01 17:42:55 +00:00
parent 0c39a35457
commit 96d45008a6
1 changed files with 1 additions and 1 deletions

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