mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Remove redundant code in InstCombineShift, no functionality change because instsimplify already does this and instcombine calls instsimplify a few lines above. Patch by Suyog Sarda!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211250 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f9ec8fe70c
commit
bdb4aca202
@ -789,11 +789,6 @@ Instruction *InstCombiner::visitAShr(BinaryOperator &I) {
|
||||
// have a sign-extend idiom.
|
||||
Value *X;
|
||||
if (match(Op0, m_Shl(m_Value(X), m_Specific(Op1)))) {
|
||||
// If the left shift is just shifting out partial signbits, delete the
|
||||
// extension.
|
||||
if (cast<OverflowingBinaryOperator>(Op0)->hasNoSignedWrap())
|
||||
return ReplaceInstUsesWith(I, X);
|
||||
|
||||
// If the input is an extension from the shifted amount value, e.g.
|
||||
// %x = zext i8 %A to i32
|
||||
// %y = shl i32 %x, 24
|
||||
|
Loading…
x
Reference in New Issue
Block a user