diff options
Diffstat (limited to 'lib/Transforms/Scalar/IndVarSimplify.cpp')
-rw-r--r-- | lib/Transforms/Scalar/IndVarSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index 2385051678..b4b6ea3557 100644 --- a/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -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); |