Index: src/compiler/machine-operator-reducer.cc |
diff --git a/src/compiler/machine-operator-reducer.cc b/src/compiler/machine-operator-reducer.cc |
index 1f73262f95f63a6a25cee83bcbe2d355c3bb58b2..836ddd146483d4702aa7c2bfb76b158bbf504a5f 100644 |
--- a/src/compiler/machine-operator-reducer.cc |
+++ b/src/compiler/machine-operator-reducer.cc |
@@ -654,8 +654,8 @@ Reduction MachineOperatorReducer::ReduceInt32Mod(Node* node) { |
Node* check = |
graph()->NewNode(machine()->Int32LessThan(), dividend, zero); |
- Node* branch = |
- graph()->NewNode(common()->Branch(), check, graph()->start()); |
+ Node* branch = graph()->NewNode(common()->Branch(BranchHint::kFalse), |
+ check, graph()->start()); |
Node* if_true = graph()->NewNode(common()->IfTrue(), branch); |
Node* neg = Int32Sub(zero, Word32And(Int32Sub(zero, dividend), mask)); |