| Index: src/compiler/js-call-reducer.cc
|
| diff --git a/src/compiler/js-call-reducer.cc b/src/compiler/js-call-reducer.cc
|
| index 2fb321e26db5886dc4471c780eee75c11d61fbc5..a11643582e0a09d8af26801af01dca88d3a3dd89 100644
|
| --- a/src/compiler/js-call-reducer.cc
|
| +++ b/src/compiler/js-call-reducer.cc
|
| @@ -664,7 +664,7 @@ Reduction JSCallReducer::ReduceJSCall(Node* node) {
|
|
|
| Reduction JSCallReducer::ReduceJSCallWithSpread(Node* node) {
|
| DCHECK_EQ(IrOpcode::kJSCallWithSpread, node->opcode());
|
| - SpreadWithArityParameters const& p = SpreadWithArityParametersOf(node->op());
|
| + SpreadWithArityParameter const& p = SpreadWithArityParameterOf(node->op());
|
| DCHECK_LE(3u, p.arity());
|
| int arity = static_cast<int>(p.arity() - 1);
|
|
|
| @@ -791,7 +791,7 @@ Reduction JSCallReducer::ReduceJSConstruct(Node* node) {
|
|
|
| Reduction JSCallReducer::ReduceJSConstructWithSpread(Node* node) {
|
| DCHECK_EQ(IrOpcode::kJSConstructWithSpread, node->opcode());
|
| - SpreadWithArityParameters const& p = SpreadWithArityParametersOf(node->op());
|
| + SpreadWithArityParameter const& p = SpreadWithArityParameterOf(node->op());
|
| DCHECK_LE(3u, p.arity());
|
| int arity = static_cast<int>(p.arity() - 2);
|
|
|
|
|