diff options
| author | Dan Gohman <gohman@apple.com> | 2009-02-14 02:26:50 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-02-14 02:26:50 +0000 |
| commit | 47ff6aad2320f4362a892fa1830754e789711ceb (patch) | |
| tree | 08b77602bc744131992c25b6a1c331e20c6459a6 /llvm/lib | |
| parent | 4bfa1d4c63bf2898052c971514523265920bcd10 (diff) | |
| download | bcm5719-llvm-47ff6aad2320f4362a892fa1830754e789711ceb.tar.gz bcm5719-llvm-47ff6aad2320f4362a892fa1830754e789711ceb.zip | |
Clarify debug output.
llvm-svn: 64531
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/IndVarSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp index 23850516787..b4b6ea35577 100644 --- a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/llvm/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); |

