Index: src/compiler/ia32/instruction-selector-ia32.cc |
diff --git a/src/compiler/ia32/instruction-selector-ia32.cc b/src/compiler/ia32/instruction-selector-ia32.cc |
index 2ad499a9f1e4c456702002ad66baab1cfd73adfc..868524686368500e04a53bbe7ed3b16bb8359b0e 100644 |
--- a/src/compiler/ia32/instruction-selector-ia32.cc |
+++ b/src/compiler/ia32/instruction-selector-ia32.cc |
@@ -303,6 +303,11 @@ void InstructionSelector::VisitInt32Sub(Node* node) { |
} |
+void InstructionSelector::VisitInt32SubWithOverflow(Node* node) { |
+ VisitBinopWithOverflow(this, node, kIA32Sub); |
+} |
+ |
+ |
void InstructionSelector::VisitInt32Mul(Node* node) { |
IA32OperandGenerator g(this); |
Node* left = node->InputAt(0); |