Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 21033c50d513489a098fc8edfd93d4b6a25b8d23..96b87fe561a23a3ec1963185fd14c38d53d91171 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -554,10 +554,11 @@ Callable CodeFactory::HasProperty(Isolate* isolate) { |
// static |
Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate, |
- TailCallMode tail_call_mode) { |
- return Callable( |
- isolate->builtins()->InterpreterPushArgsAndCall(tail_call_mode), |
- InterpreterPushArgsAndCallDescriptor(isolate)); |
+ TailCallMode tail_call_mode, |
+ CallableType function_type) { |
+ return Callable(isolate->builtins()->InterpreterPushArgsAndCall( |
+ tail_call_mode, function_type), |
+ InterpreterPushArgsAndCallDescriptor(isolate)); |
} |