diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-18 18:11:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-18 18:11:55 +0000 |
commit | 4946e224a9bde60f72759f65e47f042a3b0c97fe (patch) | |
tree | 85a941fbbf9bc3923e15ab7b53fe9c105fe5c125 /lib | |
parent | a8cc5ef840f9a6b695842bb886dd9e1d6cb19d11 (diff) | |
download | external_llvm-4946e224a9bde60f72759f65e47f042a3b0c97fe.zip external_llvm-4946e224a9bde60f72759f65e47f042a3b0c97fe.tar.gz external_llvm-4946e224a9bde60f72759f65e47f042a3b0c97fe.tar.bz2 |
Fix the regressions on sext-misc.ll my patch yesterday caused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 802102c..4409380 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -1343,6 +1343,7 @@ bool InstCombiner::SimplifyDemandedBits(Value *V, APInt DemandedMask, } } } + ComputeMaskedBits(V, DemandedMask, RHSKnownZero, RHSKnownOne, Depth); break; } |