Remove unused variable.

llvm-svn: 130705
This commit is contained in:
Duncan Sands 2011-05-02 18:41:29 +00:00
parent c638cd21fb
commit 6b699f863f
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ Instruction *InstCombiner::commonIRemTransforms(BinaryOperator &I) {
if (isa<SelectInst>(Op1) && SimplifyDivRemOfSelect(I))
return &I;
if (ConstantInt *RHS = dyn_cast<ConstantInt>(Op1)) {
if (isa<ConstantInt>(Op1)) {
if (Instruction *Op0I = dyn_cast<Instruction>(Op0)) {
if (SelectInst *SI = dyn_cast<SelectInst>(Op0I)) {
if (Instruction *R = FoldOpIntoSelect(I, SI))