| Index: runtime/vm/flow_graph_compiler.cc
|
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
|
| index 92865f91f26adba5a41a30871534776608cb31e9..f22a000d131b51b26f0d94b4979bed1170cfa2d2 100644
|
| --- a/runtime/vm/flow_graph_compiler.cc
|
| +++ b/runtime/vm/flow_graph_compiler.cc
|
| @@ -109,7 +109,7 @@ RawDeoptInfo* CompilerDeoptInfo::CreateDeoptInfo(FlowGraphCompiler* compiler) {
|
| }
|
|
|
| // Set the locals, not including the outgoing arguments.
|
| - ASSERT(current->Length() > inner->fixed_parameter_count());
|
| + ASSERT(current->Length() >= inner->fixed_parameter_count());
|
| for (intptr_t i = current->Length() - inner->fixed_parameter_count() - 1;
|
| i >= current->fixed_parameter_count();
|
| i--) {
|
|
|