| Index: src/compiler/js-inlining-heuristic.cc
|
| diff --git a/src/compiler/js-inlining-heuristic.cc b/src/compiler/js-inlining-heuristic.cc
|
| index 672d322a249adcdd0be110502b6d8516aa911837..c924f60e819ca5cd6480cc97e1e5cb564dc06b24 100644
|
| --- a/src/compiler/js-inlining-heuristic.cc
|
| +++ b/src/compiler/js-inlining-heuristic.cc
|
| @@ -121,7 +121,7 @@ Reduction JSInliningHeuristic::Reduce(Node* node) {
|
| CallFunctionParameters const p = CallFunctionParametersOf(node->op());
|
| candidate.frequency = p.frequency();
|
| } else {
|
| - CallConstructParameters const p = CallConstructParametersOf(node->op());
|
| + ConstructParameters const p = ConstructParametersOf(node->op());
|
| candidate.frequency = p.frequency();
|
| }
|
|
|
| @@ -175,7 +175,7 @@ Reduction JSInliningHeuristic::InlineCandidate(Candidate const& candidate) {
|
| return reduction;
|
| }
|
|
|
| - // Expand the JSCallFunction/JSCallConstruct node to a subgraph first if
|
| + // Expand the JSCallFunction/JSConstruct node to a subgraph first if
|
| // we have multiple known target functions.
|
| DCHECK_LT(1, num_calls);
|
| Node* calls[kMaxCallPolymorphism + 1];
|
|
|