| Index: src/runtime/runtime-maths.cc
|
| diff --git a/src/runtime/runtime-maths.cc b/src/runtime/runtime-maths.cc
|
| index 70c587d7454b401fbfe9f2fc61812b039a6a0531..cdcdb015f6feb8d6cb68ecd629b09981d1146988 100644
|
| --- a/src/runtime/runtime-maths.cc
|
| +++ b/src/runtime/runtime-maths.cc
|
| @@ -106,8 +106,8 @@ RUNTIME_FUNCTION(Runtime_MathExpRT) {
|
| isolate->counters()->math_exp()->Increment();
|
|
|
| CONVERT_DOUBLE_ARG_CHECKED(x, 0);
|
| - lazily_initialize_fast_exp();
|
| - return *isolate->factory()->NewNumber(fast_exp(x));
|
| + lazily_initialize_fast_exp(isolate);
|
| + return *isolate->factory()->NewNumber(fast_exp(x, isolate));
|
| }
|
|
|
|
|
|
|