Index: src/compiler/machine-operator.cc |
diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc |
index 10f33070a1fc38839e2ab77967c1365f83299421..03c995aa3dee5c2215cdb6a9618ec510da804322 100644 |
--- a/src/compiler/machine-operator.cc |
+++ b/src/compiler/machine-operator.cc |
@@ -128,7 +128,10 @@ CheckedStoreRepresentation CheckedStoreRepresentationOf(Operator const* op) { |
V(Uint32Mod, Operator::kNoProperties, 2, 1, 1) \ |
V(Uint32MulHigh, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
V(Int64Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
+ V(Int64AddWithOverflow, Operator::kAssociative | Operator::kCommutative, 2, \ |
+ 0, 2) \ |
V(Int64Sub, Operator::kNoProperties, 2, 0, 1) \ |
+ V(Int64SubWithOverflow, Operator::kNoProperties, 2, 0, 2) \ |
V(Int64Mul, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ |
V(Int64Div, Operator::kNoProperties, 2, 1, 1) \ |
V(Int64Mod, Operator::kNoProperties, 2, 1, 1) \ |