| Index: src/compiler/machine-operator.cc
|
| diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc
|
| index d1da6848b00baf523be342ff7ab67516df49effe..284caf30620c1ada957ea51d5c7c967d8200fa13 100644
|
| --- a/src/compiler/machine-operator.cc
|
| +++ b/src/compiler/machine-operator.cc
|
| @@ -163,6 +163,7 @@ MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) {
|
| V(Float32SubPreserveNan, Operator::kNoProperties, 2, 0, 1) \
|
| V(Float32Mul, Operator::kCommutative, 2, 0, 1) \
|
| V(Float32Div, Operator::kNoProperties, 2, 0, 1) \
|
| + V(Float32Neg, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float32Sqrt, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float64Abs, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float64Acos, Operator::kNoProperties, 1, 0, 1) \
|
| @@ -183,6 +184,7 @@ MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) {
|
| V(Float64Log10, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float64Max, Operator::kNoProperties, 2, 0, 1) \
|
| V(Float64Min, Operator::kNoProperties, 2, 0, 1) \
|
| + V(Float64Neg, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float64Add, Operator::kCommutative, 2, 0, 1) \
|
| V(Float64Sub, Operator::kNoProperties, 2, 0, 1) \
|
| V(Float64SubPreserveNan, Operator::kNoProperties, 2, 0, 1) \
|
| @@ -404,9 +406,7 @@ MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) {
|
| V(Float64RoundTruncate, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float64RoundTiesAway, Operator::kNoProperties, 1, 0, 1) \
|
| V(Float32RoundTiesEven, Operator::kNoProperties, 1, 0, 1) \
|
| - V(Float64RoundTiesEven, Operator::kNoProperties, 1, 0, 1) \
|
| - V(Float32Neg, Operator::kNoProperties, 1, 0, 1) \
|
| - V(Float64Neg, Operator::kNoProperties, 1, 0, 1)
|
| + V(Float64RoundTiesEven, Operator::kNoProperties, 1, 0, 1)
|
|
|
| #define OVERFLOW_OP_LIST(V) \
|
| V(Int32AddWithOverflow, Operator::kAssociative | Operator::kCommutative) \
|
|
|