| Index: runtime/vm/flow_graph_range_analysis.cc
|
| diff --git a/runtime/vm/flow_graph_range_analysis.cc b/runtime/vm/flow_graph_range_analysis.cc
|
| index 9b7eb8b510056fbc12c1074fc0f07a1d2a09c30f..70a9dc50b455721e9fcd44126a9d9fbfea090f1e 100644
|
| --- a/runtime/vm/flow_graph_range_analysis.cc
|
| +++ b/runtime/vm/flow_graph_range_analysis.cc
|
| @@ -910,7 +910,7 @@ class Scheduler {
|
| // Attempt to find equivalent instruction that was already scheduled.
|
| // If the instruction is still in the graph (it could have been
|
| // un-scheduled by a rollback action) and it dominates the sink - use it.
|
| - Instruction* emitted = map_.Lookup(instruction);
|
| + Instruction* emitted = map_.LookupValue(instruction);
|
| if (emitted != NULL &&
|
| !emitted->WasEliminated() &&
|
| sink->IsDominatedBy(emitted)) {
|
|
|