commit | 68d98e0bdc1092cf5083dd11867225afaae34b66 | [log] [tgz] |
---|---|---|
author | Jeff Cohen <jeffc@jolt-lang.org> | Fri Oct 07 05:28:29 2005 +0000 |
committer | Jeff Cohen <jeffc@jolt-lang.org> | Fri Oct 07 05:28:29 2005 +0000 |
tree | 2e708d762ce4cdb265bbae8dcc08250f3487b8a4 | |
parent | 71abaab1d2379aca3a2bd9d213d047cdb235349e [diff] [blame] |
Remove useless variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23656 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 0ac849d..d98f1f1 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -3444,7 +3444,7 @@ 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;