[llvm-commits] [llvm] r52466 - /llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
Chris Lattner
sabre at nondot.org
Wed Jun 18 11:11:55 PDT 2008
Author: lattner
Date: Wed Jun 18 13:11:55 2008
New Revision: 52466
URL: http://llvm.org/viewvc/llvm-project?rev=52466&view=rev
Log:
Fix the regressions on sext-misc.ll my patch yesterday caused.
Modified:
llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=52466&r1=52465&r2=52466&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Wed Jun 18 13:11:55 2008
@@ -1343,6 +1343,7 @@
}
}
}
+ ComputeMaskedBits(V, DemandedMask, RHSKnownZero, RHSKnownOne, Depth);
break;
}
More information about the llvm-commits
mailing list