Remove useless variable.
authorJeff Cohen <jeffc@jolt-lang.org>
Fri, 7 Oct 2005 05:28:29 +0000 (05:28 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Fri, 7 Oct 2005 05:28:29 +0000 (05:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23656 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 0ac849d44cc82fb379d8273cf4b89a7ce0d2f6fa..d98f1f14d659989e8e95636c4915bcc35da93d80 100644 (file)
@@ -3444,7 +3444,7 @@ Instruction *InstCombiner::visitShiftInst(ShiftInst &I) {
 
       if (BinaryOperator *Op0BO = dyn_cast<BinaryOperator>(Op0)) {
         // Turn ((X >> C) + Y) << C  ->  (X + (Y << C)) & (~0 << C)
-        Value *V1, *V2, *V3;
+        Value *V1, *V2;
         ConstantInt *CC;
         switch (Op0BO->getOpcode()) {
         default: break;