| Index: src/code-factory.cc
|
| diff --git a/src/code-factory.cc b/src/code-factory.cc
|
| index 63cd5d0765e6d5c6a55bba10316806eb8cf9260e..257c6a4d703d7e61cf73ed8659d4dbb9489b72bc 100644
|
| --- a/src/code-factory.cc
|
| +++ b/src/code-factory.cc
|
| @@ -576,9 +576,11 @@ Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate,
|
| }
|
|
|
| // static
|
| -Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) {
|
| - return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(),
|
| - InterpreterPushArgsAndConstructDescriptor(isolate));
|
| +Callable CodeFactory::InterpreterPushArgsAndConstruct(
|
| + Isolate* isolate, CallableType function_type) {
|
| + return Callable(
|
| + isolate->builtins()->InterpreterPushArgsAndConstruct(function_type),
|
| + InterpreterPushArgsAndConstructDescriptor(isolate));
|
| }
|
|
|
| // static
|
|
|