Chromium Code Reviews| Index: runtime/vm/flow_graph_allocator.cc |
| diff --git a/runtime/vm/flow_graph_allocator.cc b/runtime/vm/flow_graph_allocator.cc |
| index 786a62f896da540d5a82aabc17112b337fbc1b83..0113073021a36d539584d19b1be5ff3b2bc0f90f 100644 |
| --- a/runtime/vm/flow_graph_allocator.cc |
| +++ b/runtime/vm/flow_graph_allocator.cc |
| @@ -1287,6 +1287,8 @@ void FlowGraphAllocator::AssignNonFreeRegister(LiveRange* unallocated, |
| if (allocated->vreg() < 0) continue; // Can't be evicted. |
| if (EvictIntersection(allocated, |
|
Kevin Millikin (Google)
2012/07/25 11:26:32
We probably don't need a line break here.
|
| unallocated)) { |
| + ASSERT(allocated->End() <= unallocated->Start()); |
| + ConvertAllUses(allocated); |
| cpu_regs_[reg][i] = NULL; |
| first_evicted = i; |
| } |