aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-02-14 02:26:50 +0000
committerDan Gohman <gohman@apple.com>2009-02-14 02:26:50 +0000
commitf108e2eaaa788272a3ced1eef1bbb84f0d03b60c (patch)
tree4ebb5d5a6c6485981de1c227dd54e6bd7381933f /lib/Transforms
parentcd3eb9b09882087761c811d349c2b3be4e5c8a34 (diff)
Clarify debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/IndVarSimplify.cpp2
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);