aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2008-01-22 05:42:02 +0000
committerNick Lewycky <nicholas@mxc.ca>2008-01-22 05:42:02 +0000
commitee4115e496cf16903f695fcf496b0a074cd68ddf (patch)
tree395f109a1f21c41e28e77c49dd5aea9514e8cd8c /lib
parent1c4997bd9ca0cb7f98f1a04bfb47c2fea744dd0c (diff)
downloadexternal_llvm-ee4115e496cf16903f695fcf496b0a074cd68ddf.zip
external_llvm-ee4115e496cf16903f695fcf496b0a074cd68ddf.tar.gz
external_llvm-ee4115e496cf16903f695fcf496b0a074cd68ddf.tar.bz2
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
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 3e009eb..d17035c 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,