[llvm-commits] [llvm] r46247 - /llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Nick Lewycky nicholas at mxc.ca
Mon Jan 21 21:42:02 PST 2008


Author: nicholas
Date: Mon Jan 21 23:42:02 2008
New Revision: 46247

URL: http://llvm.org/viewvc/llvm-project?rev=46247&view=rev
Log:
Enable the fix I just checked in, silly me.

Modified:
    llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp?rev=46247&r1=46246&r2=46247&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InstructionCombining.cpp Mon Jan 21 23:42:02 2008
@@ -6513,7 +6513,6 @@
                                       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,





More information about the llvm-commits mailing list