aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
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
commit64105102246a6ddebf8b7184743fdd9ca2b5b081 (patch)
tree395f109a1f21c41e28e77c49dd5aea9514e8cd8c /lib/Transforms
parent3b8ea6e0a88c03988ab8f4079a38969608a26434 (diff)
downloadexternal_llvm-64105102246a6ddebf8b7184743fdd9ca2b5b081.zip
external_llvm-64105102246a6ddebf8b7184743fdd9ca2b5b081.tar.gz
external_llvm-64105102246a6ddebf8b7184743fdd9ca2b5b081.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/Transforms')
-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,