From 6c3bfba06ef379ad218811854732e7205ff74438 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 18 Jun 2008 18:11:55 +0000 Subject: [PATCH] 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 --- lib/Transforms/Scalar/InstructionCombining.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 802102c99a2..4409380bd7a 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; } -- 2.34.1