Chromium Code Reviews| Index: runtime/vm/flow_graph_allocator.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_allocator.cc (revision 36483) |
| +++ runtime/vm/flow_graph_allocator.cc (working copy) |
| @@ -135,7 +135,7 @@ |
| Instruction* current = it.Current(); |
| // Initialize location summary for instruction. |
| - current->InitializeLocationSummary(true); // Optimizing. |
| + current->InitializeLocationSummary(Isolate::Current(), true); // Optimizing. |
|
srdjan
2014/05/22 17:25:08
80 char limit exceeded
|
| LocationSummary* locs = current->locs(); |
| // Handle definitions. |
| @@ -1913,7 +1913,7 @@ |
| safepoint != NULL; |
| safepoint = safepoint->next()) { |
| // Mark the stack slot as having an object. |
| - safepoint->locs()->stack_bitmap()->Set(stack_index, true); |
| + safepoint->locs()->SetStackBit(stack_index); |
| } |
| range = range->next_sibling(); |
| } |