Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 5078b19b030467639074fc2449140db4c5e1cfd7..9e5f716cfb722383ca5aa96d2aca59ce61393520 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 |