| Index: runtime/vm/intermediate_language.cc
|
| diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
|
| index c3359f1f23fe46637922f5369b64a07f62f3c7f3..f3af736017344d973af143f0602ecbd3f1c8e609 100644
|
| --- a/runtime/vm/intermediate_language.cc
|
| +++ b/runtime/vm/intermediate_language.cc
|
| @@ -975,8 +975,7 @@ bool BlockEntryInstr::DiscoverBlock(
|
| }
|
|
|
|
|
| -bool BlockEntryInstr::PruneUnreachable(FlowGraphBuilder* builder,
|
| - GraphEntryInstr* graph_entry,
|
| +bool BlockEntryInstr::PruneUnreachable(GraphEntryInstr* graph_entry,
|
| Instruction* parent,
|
| intptr_t osr_id,
|
| BitVector* block_marks) {
|
| @@ -1012,8 +1011,7 @@ bool BlockEntryInstr::PruneUnreachable(FlowGraphBuilder* builder,
|
|
|
| // Recursively search the successors.
|
| for (intptr_t i = instr->SuccessorCount() - 1; i >= 0; --i) {
|
| - if (instr->SuccessorAt(i)->PruneUnreachable(builder,
|
| - graph_entry,
|
| + if (instr->SuccessorAt(i)->PruneUnreachable(graph_entry,
|
| instr,
|
| osr_id,
|
| block_marks)) {
|
|
|