| Index: runtime/vm/flow_graph_allocator.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_allocator.cc (revision 9849)
|
| +++ runtime/vm/flow_graph_allocator.cc (working copy)
|
| @@ -112,7 +112,7 @@
|
| }
|
|
|
| Definition* current_def = current->AsDefinition();
|
| - if ((current_def != NULL) && (current_def->ssa_temp_index() >= 0)) {
|
| + if ((current_def != NULL) && (current_def->HasSSATemp())) {
|
| kill->Add(current_def->ssa_temp_index());
|
| }
|
| }
|
| @@ -518,7 +518,7 @@
|
| }
|
|
|
| Definition* def = current->AsDefinition();
|
| - if ((def != NULL) && (def->ssa_temp_index() >= 0)) {
|
| + if ((def != NULL) && (def->HasSSATemp())) {
|
| Define(output_same_as_first_input ? current : NULL,
|
| pos,
|
| def->ssa_temp_index(),
|
|
|