Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 018f21d447ea4df27188296ef9777c5f124e2949..654c192fc773db9d346118541ddd526139de0d6b 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -594,9 +594,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 |