Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 62ed852f8543f234fccad1d46c9ff3817a3b234f..19bb44228c8d448a09db7722ec97131f6c09f9de 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -581,11 +581,9 @@ |
// static |
-Callable CodeFactory::InterpreterPushArgsAndConstruct( |
- Isolate* isolate, CallableType function_type) { |
- return Callable( |
- isolate->builtins()->InterpreterPushArgsAndConstruct(function_type), |
- InterpreterPushArgsAndConstructDescriptor(isolate)); |
+Callable CodeFactory::InterpreterPushArgsAndConstruct(Isolate* isolate) { |
+ return Callable(isolate->builtins()->InterpreterPushArgsAndConstruct(), |
+ InterpreterPushArgsAndConstructDescriptor(isolate)); |
} |