| Index: src/compiler/simplified-operator.cc
|
| diff --git a/src/compiler/simplified-operator.cc b/src/compiler/simplified-operator.cc
|
| index a77931e0f3862ebaa32953b2e9fd644cb3e14885..1a702ee3ba565ab122700ebb11479b6e274a223f 100644
|
| --- a/src/compiler/simplified-operator.cc
|
| +++ b/src/compiler/simplified-operator.cc
|
| @@ -256,6 +256,7 @@ CompareOperationHints::Hint CompareOperationHintOf(const Operator* op) {
|
| V(NumberAtanh, Operator::kNoProperties, 1) \
|
| V(NumberCbrt, Operator::kNoProperties, 1) \
|
| V(NumberCos, Operator::kNoProperties, 1) \
|
| + V(NumberCosh, Operator::kNoProperties, 1) \
|
| V(NumberExp, Operator::kNoProperties, 1) \
|
| V(NumberExpm1, Operator::kNoProperties, 1) \
|
| V(NumberLog, Operator::kNoProperties, 1) \
|
| @@ -265,8 +266,10 @@ CompareOperationHints::Hint CompareOperationHintOf(const Operator* op) {
|
| V(NumberPow, Operator::kNoProperties, 2) \
|
| V(NumberRound, Operator::kNoProperties, 1) \
|
| V(NumberSin, Operator::kNoProperties, 1) \
|
| + V(NumberSinh, Operator::kNoProperties, 1) \
|
| V(NumberSqrt, Operator::kNoProperties, 1) \
|
| V(NumberTan, Operator::kNoProperties, 1) \
|
| + V(NumberTanh, Operator::kNoProperties, 1) \
|
| V(NumberTrunc, Operator::kNoProperties, 1) \
|
| V(NumberToInt32, Operator::kNoProperties, 1) \
|
| V(NumberToUint32, Operator::kNoProperties, 1) \
|
|
|