| Index: src/builtins/builtins-constructor.cc
|
| diff --git a/src/builtins/builtins-constructor.cc b/src/builtins/builtins-constructor.cc
|
| index 032d421063cd052b8c4da5fff21e0cb4e2241046..db3ffb0b91c4ee7b712aeac68cc26257c7fecfcc 100644
|
| --- a/src/builtins/builtins-constructor.cc
|
| +++ b/src/builtins/builtins-constructor.cc
|
| @@ -16,6 +16,8 @@ namespace internal {
|
| typedef compiler::Node Node;
|
|
|
| Node* ConstructorBuiltinsAssembler::EmitFastNewClosure(Node* shared_info,
|
| + Node* feedback_vector,
|
| + Node* slot,
|
| Node* context) {
|
| typedef compiler::CodeAssembler::Label Label;
|
| typedef compiler::CodeAssembler::Variable Variable;
|
| @@ -148,7 +150,9 @@ Node* ConstructorBuiltinsAssembler::EmitFastNewClosure(Node* shared_info,
|
| TF_BUILTIN(FastNewClosure, ConstructorBuiltinsAssembler) {
|
| Node* shared = Parameter(FastNewClosureDescriptor::kSharedFunctionInfo);
|
| Node* context = Parameter(FastNewClosureDescriptor::kContext);
|
| - Return(EmitFastNewClosure(shared, context));
|
| + Node* vector = Parameter(FastNewClosureDescriptor::kVector);
|
| + Node* slot = Parameter(FastNewClosureDescriptor::kSlot);
|
| + Return(EmitFastNewClosure(shared, vector, slot, context));
|
| }
|
|
|
| TF_BUILTIN(FastNewObject, ConstructorBuiltinsAssembler) {
|
|
|