Clarify debug output.

llvm-svn: 64531
This commit is contained in:
Dan Gohman 2009-02-14 02:26:50 +00:00
parent 4bfa1d4c63
commit 47ff6aad23
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ void IndVarSimplify::LinearFunctionTestReplace(Loop *L,
DOUT << "INDVARS: Rewriting loop exit condition to:\n"
<< " LHS:" << *CmpIndVar // includes a newline
<< " op:\t"
<< (Opcode == ICmpInst::ICMP_NE ? "!=" : "=") << "\n"
<< (Opcode == ICmpInst::ICMP_NE ? "!=" : "==") << "\n"
<< " RHS:\t" << *IterationCount << "\n";
Value *Cond = new ICmpInst(Opcode, CmpIndVar, ExitCnt, "exitcond", BI);