| Index: src/code-factory.cc
 | 
| diff --git a/src/code-factory.cc b/src/code-factory.cc
 | 
| index 19bb44228c8d448a09db7722ec97131f6c09f9de..62ed852f8543f234fccad1d46c9ff3817a3b234f 100644
 | 
| --- a/src/code-factory.cc
 | 
| +++ b/src/code-factory.cc
 | 
| @@ -581,9 +581,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));
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |