| Index: src/execution.cc
|
| diff --git a/src/execution.cc b/src/execution.cc
|
| index 60756249b0c5774d08cf477a1afa10a510863fa6..048e6e09619395aab22645c2cd8e6db8dc4059c7 100644
|
| --- a/src/execution.cc
|
| +++ b/src/execution.cc
|
| @@ -708,7 +708,7 @@ Handle<JSFunction> Execution::InstantiateFunction(
|
| int serial_number = Smi::cast(data->serial_number())->value();
|
| Object* elm =
|
| isolate->native_context()->function_cache()->
|
| - GetElementNoExceptionThrown(serial_number);
|
| + GetElementNoExceptionThrown(isolate, serial_number);
|
| if (elm->IsJSFunction()) return Handle<JSFunction>(JSFunction::cast(elm));
|
| // The function has not yet been instantiated in this context; do it.
|
| Handle<Object> args[] = { data };
|
|
|