| Index: src/code-factory.cc
|
| diff --git a/src/code-factory.cc b/src/code-factory.cc
|
| index fb719a393069d5c9e3c1d542db4e20acd5ca14d2..da4d8af80b59d591b506495c1e18956eebc7954a 100644
|
| --- a/src/code-factory.cc
|
| +++ b/src/code-factory.cc
|
| @@ -360,12 +360,17 @@ Callable CodeFactory::ConstructFunction(Isolate* isolate) {
|
|
|
|
|
| // static
|
| +Callable CodeFactory::InterpreterPushArgsAndCallIC(Isolate* isolate) {
|
| + return Callable(isolate->builtins()->InterpreterPushArgsAndCallIC(),
|
| + InterpreterPushArgsAndCallICDescriptor(isolate));
|
| +}
|
| +
|
| +// static
|
| Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate) {
|
| return Callable(isolate->builtins()->InterpreterPushArgsAndCall(),
|
| InterpreterPushArgsAndCallDescriptor(isolate));
|
| }
|
|
|
| -
|
| // static
|
| Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) {
|
| return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(),
|
|
|