| Index: src/compiler/js-generic-lowering.cc
|
| diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc
|
| index a7eabc78cfc78340ce07ed46eaac89b7f19a2719..f32250481bac9727a6145ae01d34b94bf0024d47 100644
|
| --- a/src/compiler/js-generic-lowering.cc
|
| +++ b/src/compiler/js-generic-lowering.cc
|
| @@ -291,7 +291,7 @@ void JSGenericLowering::LowerJSStoreGlobal(Node* node) {
|
| }
|
|
|
| void JSGenericLowering::LowerJSStoreDataPropertyInLiteral(Node* node) {
|
| - DataPropertyParameters const& p = DataPropertyParametersOf(node->op());
|
| + FeedbackParameter const& p = FeedbackParameterOf(node->op());
|
| node->InsertInputs(zone(), 4, 2);
|
| node->ReplaceInput(4, jsgraph()->HeapConstant(p.feedback().vector()));
|
| node->ReplaceInput(5, jsgraph()->SmiConstant(p.feedback().index()));
|
| @@ -528,7 +528,7 @@ void JSGenericLowering::LowerJSConstruct(Node* node) {
|
| }
|
|
|
| void JSGenericLowering::LowerJSConstructWithSpread(Node* node) {
|
| - SpreadWithArityParameters const& p = SpreadWithArityParametersOf(node->op());
|
| + SpreadWithArityParameter const& p = SpreadWithArityParameterOf(node->op());
|
| int const arg_count = static_cast<int>(p.arity() - 2);
|
| CallDescriptor::Flags flags = FrameStateFlagForCall(node);
|
| Callable callable = CodeFactory::ConstructWithSpread(isolate());
|
| @@ -581,7 +581,7 @@ void JSGenericLowering::LowerJSCall(Node* node) {
|
| }
|
|
|
| void JSGenericLowering::LowerJSCallWithSpread(Node* node) {
|
| - SpreadWithArityParameters const& p = SpreadWithArityParametersOf(node->op());
|
| + SpreadWithArityParameter const& p = SpreadWithArityParameterOf(node->op());
|
| int const arg_count = static_cast<int>(p.arity() - 2);
|
| Callable callable = CodeFactory::CallWithSpread(isolate());
|
| CallDescriptor::Flags flags = FrameStateFlagForCall(node);
|
|
|