| Index: src/code-stubs.cc
|
| diff --git a/src/code-stubs.cc b/src/code-stubs.cc
|
| index 3e1b54835ed7f5cf12295eb188d99dc8fb1d6806..e9fddf9bf1efd1ac85a2562c883b4ae82ae89008 100644
|
| --- a/src/code-stubs.cc
|
| +++ b/src/code-stubs.cc
|
| @@ -489,8 +489,8 @@
|
| Handle<Object> call_conv = factory->InternalizeUtf8String(name);
|
| Handle<Object> minor_key = factory->NewNumber(MinorKey());
|
| Handle<Object> args[] = {call_conv, minor_key};
|
| - MaybeHandle<Object> result =
|
| - Execution::Call(isolate(), outer, factory->undefined_value(), 2, args);
|
| + MaybeHandle<Object> result = Execution::Call(
|
| + isolate(), outer, factory->undefined_value(), 2, args, false);
|
| Handle<JSFunction> inner = Handle<JSFunction>::cast(result.ToHandleChecked());
|
| // Just to make sure nobody calls this...
|
| inner->set_code(isolate()->builtins()->builtin(Builtins::kIllegal));
|
|
|