aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-07-08 12:08:24 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-07-08 12:08:24 +0000
commit3492a4af129f6068739bbbe3f8c7fbe7e4af2fcb (patch)
tree4f0f64402bef41d444d0ec8465cc06ad7e1d6d15 /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parent4455397122a4f8a37333e02fddcdfbee81bb7daf (diff)
Apparently we can't expect a BinaryOperator here.
Should fix llvm-gcc selfhost. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134699 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 2a362ebfc2..2afec3328b 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -2502,14 +2502,14 @@ void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) {
}
void SelectionDAGBuilder::visitSDiv(const User &I) {
- const BinaryOperator *BO = cast<BinaryOperator>(&I);
SDValue Op1 = getValue(I.getOperand(0));
SDValue Op2 = getValue(I.getOperand(1));
// Turn exact SDivs into multiplications.
// FIXME: This should be in DAGCombiner, but it doesn't have access to the
// exact bit.
- if (BO->isExact() && !isa<ConstantSDNode>(Op1) &&
+ if (isa<BinaryOperator>(&I) && cast<BinaryOperator>(&I)->isExact() &&
+ !isa<ConstantSDNode>(Op1) &&
isa<ConstantSDNode>(Op2) && !cast<ConstantSDNode>(Op2)->isNullValue())
setValue(&I, TLI.BuildExactSDIV(Op1, Op2, getCurDebugLoc(), DAG));
else