Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 06bccf23faada7b8aabca37276fcb4bfc9c18900..64f662e268bd16409c489befea97aa753d6fd779 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -606,6 +606,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. |