Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 9e5f716cfb722383ca5aa96d2aca59ce61393520..5078b19b030467639074fc2449140db4c5e1cfd7 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -576,11 +576,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)); |
} |
// static |