diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-01-22 05:42:02 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-01-22 05:42:02 +0000 |
commit | 64105102246a6ddebf8b7184743fdd9ca2b5b081 (patch) | |
tree | 395f109a1f21c41e28e77c49dd5aea9514e8cd8c | |
parent | 3b8ea6e0a88c03988ab8f4079a38969608a26434 (diff) |
Enable the fix I just checked in, silly me.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46247 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 3e009ebce4..d17035c161 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/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, |