| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index cfbcc135dfc3eaddb2e8e9e536b7b21287b4fc96..7fcd8bd88eda97a96fbe26a953504253ec1944a0 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -3239,7 +3239,7 @@ class HConstant: public HTemplateInstruction<0> {
|
| return has_double_value_ &&
|
| (BitCast<int64_t>(double_value_) == BitCast<int64_t>(-0.0) ||
|
| FixedDoubleArray::is_the_hole_nan(double_value_) ||
|
| - isnan(double_value_));
|
| + std::isnan(double_value_));
|
| }
|
|
|
| bool ImmortalImmovable() const {
|
|
|