mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
As Chris suggested, handle the situation if ShAmt larger than BitWidth,
otherwise, opt might crash. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52041 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1236,7 +1236,7 @@ bool InstCombiner::SimplifyDemandedBits(Value *V, APInt DemandedMask,
|
|||||||
|
|
||||||
// If the input sign bit is known to be zero, or if none of the top bits
|
// If the input sign bit is known to be zero, or if none of the top bits
|
||||||
// are demanded, turn this into an unsigned shift right.
|
// are demanded, turn this into an unsigned shift right.
|
||||||
if (BitWidth == ShiftAmt || RHSKnownZero[BitWidth-ShiftAmt-1] ||
|
if (BitWidth <= ShiftAmt || RHSKnownZero[BitWidth-ShiftAmt-1] ||
|
||||||
(HighBits & ~DemandedMask) == HighBits) {
|
(HighBits & ~DemandedMask) == HighBits) {
|
||||||
// Perform the logical shift right.
|
// Perform the logical shift right.
|
||||||
Value *NewVal = BinaryOperator::CreateLShr(
|
Value *NewVal = BinaryOperator::CreateLShr(
|
||||||
|
Reference in New Issue
Block a user