[llvm-commits] CVS: llvm/lib/Transforms/Scalar/InstructionCombining.cpp
Jeff Cohen
jeffc at jolt-lang.org
Thu Oct 6 22:28:40 PDT 2005
Changes in directory llvm/lib/Transforms/Scalar:
InstructionCombining.cpp updated: 1.382 -> 1.383
---
Log message:
Remove useless variable.
---
Diffs of the changes: (+1 -1)
InstructionCombining.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Transforms/Scalar/InstructionCombining.cpp
diff -u llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.382 llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.383
--- llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.382 Mon Sep 26 00:28:06 2005
+++ llvm/lib/Transforms/Scalar/InstructionCombining.cpp Fri Oct 7 00:28:29 2005
@@ -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;
More information about the llvm-commits
mailing list