diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2014-06-19 03:28:28 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2014-06-19 03:28:28 +0000 |
commit | 802df5242485ed5356537bd652a72a66138593e3 (patch) | |
tree | d500e12cd133e8be9c3e0b3c7caa7b731d2d923d /llvm/lib/Transforms | |
parent | 6a5b812c7b8ae96f7e07ca8512c7e3e0a4eee636 (diff) | |
download | bcm5719-llvm-802df5242485ed5356537bd652a72a66138593e3.tar.gz bcm5719-llvm-802df5242485ed5356537bd652a72a66138593e3.zip |
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!
llvm-svn: 211250
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp index cc6665c947d..2495747da5f 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp @@ -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 |