Make licm debug message readable.

llvm-svn: 83908
This commit is contained in:
Evan Cheng 2009-10-12 22:25:23 +00:00
parent d5707abdfd
commit f815861591
1 changed files with 2 additions and 1 deletions

View File

@ -605,7 +605,8 @@ void LICM::sink(Instruction &I) {
/// that is safe to hoist, this instruction is called to do the dirty work.
///
void LICM::hoist(Instruction &I) {
DEBUG(errs() << "LICM hoisting to " << Preheader->getName() << ": " << I);
DEBUG(errs() << "LICM hoisting to " << Preheader->getName() << ": "
<< I << "\n");
// Remove the instruction from its current basic block... but don't delete the
// instruction.