Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index c660554864e804ec6e560fdb84b2407a55578201..a4303167adb32b4f0bba3a98cd2be1bdcf9044f6 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -347,9 +347,11 @@ Callable CodeFactory::ConstructFunction(Isolate* isolate) { |
// static |
-Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate) { |
- return Callable(isolate->builtins()->InterpreterPushArgsAndCall(), |
- InterpreterPushArgsAndCallDescriptor(isolate)); |
+Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate, |
+ TailCallMode tail_call_mode) { |
+ return Callable( |
+ isolate->builtins()->InterpreterPushArgsAndCall(tail_call_mode), |
+ InterpreterPushArgsAndCallDescriptor(isolate)); |
} |