| Index: src/compiler/machine-operator.cc
|
| diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc
|
| index e850534923eea923d56d93d41c86b526079b5345..f34fc8673345893f93d749fa2999c3a0bb1692c1 100644
|
| --- a/src/compiler/machine-operator.cc
|
| +++ b/src/compiler/machine-operator.cc
|
| @@ -101,13 +101,14 @@ CheckedStoreRepresentation CheckedStoreRepresentationOf(Operator const* op) {
|
| V(Int64Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
|
| V(Int64Sub, Operator::kNoProperties, 2, 0, 1) \
|
| V(Int64Mul, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
|
| - V(Int64Div, Operator::kNoProperties, 2, 0, 1) \
|
| - V(Int64Mod, Operator::kNoProperties, 2, 0, 1) \
|
| + V(Int64Div, Operator::kNoProperties, 2, 1, 1) \
|
| + V(Int64Mod, Operator::kNoProperties, 2, 1, 1) \
|
| V(Int64LessThan, Operator::kNoProperties, 2, 0, 1) \
|
| V(Int64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
|
| - V(Uint64Div, Operator::kNoProperties, 2, 0, 1) \
|
| + V(Uint64Div, Operator::kNoProperties, 2, 1, 1) \
|
| + V(Uint64Mod, Operator::kNoProperties, 2, 1, 1) \
|
| V(Uint64LessThan, Operator::kNoProperties, 2, 0, 1) \
|
| - V(Uint64Mod, Operator::kNoProperties, 2, 0, 1) \
|
| + V(Uint64LessThanOrEqual, Operator::kNoProperties, 2, 0, 1) \
|
| V(ChangeFloat32ToFloat64, Operator::kNoProperties, 1, 0, 1) \
|
| V(ChangeFloat64ToInt32, Operator::kNoProperties, 1, 0, 1) \
|
| V(ChangeFloat64ToUint32, Operator::kNoProperties, 1, 0, 1) \
|
|
|