| Index: runtime/vm/flow_graph_allocator.cc
|
| diff --git a/runtime/vm/flow_graph_allocator.cc b/runtime/vm/flow_graph_allocator.cc
|
| index ec48c20003803d5cb19a44a57421b8dd1584367a..3e43328e0f1f3ae68cc659521e2e4f7f1c422b35 100644
|
| --- a/runtime/vm/flow_graph_allocator.cc
|
| +++ b/runtime/vm/flow_graph_allocator.cc
|
| @@ -1095,7 +1095,7 @@ intptr_t FlowGraphAllocator::AllocateSpillSlotFor(LiveRange* range) {
|
|
|
| void FlowGraphAllocator::Spill(LiveRange* range) {
|
| const intptr_t spill_index = AllocateSpillSlotFor(range);
|
| - ASSERT(spill_slots_[spill_index] < range->Start());
|
| + ASSERT(spill_slots_[spill_index] <= range->Start());
|
| spill_slots_[spill_index] = range->End();
|
| range->set_assigned_location(Location::SpillSlot(spill_index));
|
| ConvertAllUses(range);
|
|
|