| Index: src/code-factory.cc
|
| diff --git a/src/code-factory.cc b/src/code-factory.cc
|
| index 654c192fc773db9d346118541ddd526139de0d6b..1fcd9f75482144ec06a32a7c308f470d9d15f048 100644
|
| --- a/src/code-factory.cc
|
| +++ b/src/code-factory.cc
|
| @@ -602,6 +602,12 @@ Callable CodeFactory::InterpreterPushArgsAndConstruct(
|
| }
|
|
|
| // static
|
| +Callable CodeFactory::InterpreterPushArgsAndConstructArray(Isolate* isolate) {
|
| + return Callable(isolate->builtins()->InterpreterPushArgsAndConstructArray(),
|
| + InterpreterPushArgsAndConstructArrayDescriptor(isolate));
|
| +}
|
| +
|
| +// static
|
| Callable CodeFactory::InterpreterCEntry(Isolate* isolate, int result_size) {
|
| // Note: If we ever use fpregs in the interpreter then we will need to
|
| // save fpregs too.
|
|
|