Enable the fix I just checked in, silly me.
authorNick Lewycky <nicholas@mxc.ca>
Tue, 22 Jan 2008 05:42:02 +0000 (05:42 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Tue, 22 Jan 2008 05:42:02 +0000 (05:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46247 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 3e009ebce464f3b842d3f42f12c3d56862a214e4..d17035c161ee59b3505cee059a1dca58ee254c04 100644 (file)
@@ -6513,7 +6513,6 @@ static bool CanEvaluateInDifferentType(Value *V, const IntegerType *Ty,
                                       NumCastsRemoved);
 
   case Instruction::Mul:
-    break;
     // A multiply can be truncated by truncating its operands.
     return Ty->getBitWidth() < OrigTy->getBitWidth() && 
            CanEvaluateInDifferentType(I->getOperand(0), Ty, CastOpc,