Index: src/compiler/machine-operator.cc |
diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc |
index 76a929213af2814f05d3b71aff4792f85c65e822..bc8256f764148d2f31356dbc65ce6c109ac07aa7 100644 |
--- a/src/compiler/machine-operator.cc |
+++ b/src/compiler/machine-operator.cc |
@@ -122,12 +122,14 @@ CheckedStoreRepresentation CheckedStoreRepresentationOf(Operator const* op) { |
V(Float32Sub, Operator::kNoProperties, 2, 0, 1) \ |
V(Float32Mul, Operator::kCommutative, 2, 0, 1) \ |
V(Float32Div, Operator::kNoProperties, 2, 0, 1) \ |
+ V(Float32Abs, Operator::kNoProperties, 1, 0, 1) \ |
V(Float32Sqrt, Operator::kNoProperties, 1, 0, 1) \ |
V(Float64Add, Operator::kCommutative, 2, 0, 1) \ |
V(Float64Sub, Operator::kNoProperties, 2, 0, 1) \ |
V(Float64Mul, Operator::kCommutative, 2, 0, 1) \ |
V(Float64Div, Operator::kNoProperties, 2, 0, 1) \ |
V(Float64Mod, Operator::kNoProperties, 2, 0, 1) \ |
+ V(Float64Abs, Operator::kNoProperties, 1, 0, 1) \ |
V(Float64Sqrt, Operator::kNoProperties, 1, 0, 1) \ |
V(Float64RoundDown, Operator::kNoProperties, 1, 0, 1) \ |
V(Float64RoundTruncate, Operator::kNoProperties, 1, 0, 1) \ |