From f0692641645f8a86fd5377ff8caa8a37cf5449dc Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Tue, 22 Jan 2008 05:42:02 +0000 Subject: [PATCH] Enable the fix I just checked in, silly me. llvm-svn: 46247 --- llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 3e009ebce464..d17035c161ee 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -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,