diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-15 19:05:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-15 19:05:52 +0000 |
commit | 3fdde110eb55116242f9c7dd9e687cbd102beb7c (patch) | |
tree | 6be7fd706ce6fae2703fff411561ce04ccd5efd3 /lib/Transforms/Scalar/LoopUnswitch.cpp | |
parent | 19fd628e5c96383a156ee5c7b781f8693688e0ae (diff) |
Checking the wrong value. This caused us to emit silly code like
Y = seteq bool X, true
instead of just using X :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopUnswitch.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopUnswitch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopUnswitch.cpp b/lib/Transforms/Scalar/LoopUnswitch.cpp index 3686e49dcd..a4da2501f9 100644 --- a/lib/Transforms/Scalar/LoopUnswitch.cpp +++ b/lib/Transforms/Scalar/LoopUnswitch.cpp @@ -442,7 +442,7 @@ static void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val, // Insert a conditional branch on LIC to the two preheaders. The original // code is the true version and the new code is the false version. Value *BranchVal = LIC; - if (!isa<ConstantBool>(BranchVal)) { + if (!isa<ConstantBool>(Val)) { BranchVal = BinaryOperator::createSetEQ(LIC, Val, "tmp", InsertPt); } else if (Val != ConstantBool::True) { // We want to enter the new loop when the condition is true. |