Index: runtime/vm/flow_graph.cc |
=================================================================== |
--- runtime/vm/flow_graph.cc (revision 35546) |
+++ runtime/vm/flow_graph.cc (working copy) |
@@ -478,6 +478,7 @@ |
if (store != NULL) { |
const intptr_t index = |
store->local().BitIndexIn(num_non_copied_params_); |
+ if (index >= live_in->length()) continue; // Skip tmp_locals. |
if (kill->Contains(index)) { |
if (!live_in->Contains(index)) { |
store->mark_dead(); |