mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 14:17:59 +00:00
Remove useless variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23656 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
71abaab1d2
commit
68d98e0bdc
@ -3444,7 +3444,7 @@ Instruction *InstCombiner::visitShiftInst(ShiftInst &I) {
|
|||||||
|
|
||||||
if (BinaryOperator *Op0BO = dyn_cast<BinaryOperator>(Op0)) {
|
if (BinaryOperator *Op0BO = dyn_cast<BinaryOperator>(Op0)) {
|
||||||
// Turn ((X >> C) + Y) << C -> (X + (Y << C)) & (~0 << C)
|
// Turn ((X >> C) + Y) << C -> (X + (Y << C)) & (~0 << C)
|
||||||
Value *V1, *V2, *V3;
|
Value *V1, *V2;
|
||||||
ConstantInt *CC;
|
ConstantInt *CC;
|
||||||
switch (Op0BO->getOpcode()) {
|
switch (Op0BO->getOpcode()) {
|
||||||
default: break;
|
default: break;
|
||||||
|
Loading…
Reference in New Issue
Block a user