diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 99a000fa926..f25ac97ef5c 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -4793,9 +4793,6 @@ static bool CanEvaluateInDifferentType(Value *V, const Type *Ty, if (!I || !I->hasOneUse()) return false; switch (I->getOpcode()) { - case Instruction::Add: - case Instruction::Sub: - case Instruction::Mul: case Instruction::And: case Instruction::Or: case Instruction::Xor: @@ -4827,9 +4824,6 @@ Value *InstCombiner::EvaluateInDifferentType(Value *V, const Type *Ty) { Instruction *I = cast(V); Instruction *Res; switch (I->getOpcode()) { - case Instruction::Add: - case Instruction::Sub: - case Instruction::Mul: case Instruction::And: case Instruction::Or: case Instruction::Xor: {