| Index: runtime/vm/flow_graph_optimizer.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_optimizer.cc (revision 11378)
|
| +++ runtime/vm/flow_graph_optimizer.cc (working copy)
|
| @@ -472,9 +472,7 @@
|
|
|
| AddCheckClass(instr, comp, comp->ArgumentAt(0)->value()->CopyValue());
|
| LoadInstanceFieldComp* load =
|
| - new LoadInstanceFieldComp(field,
|
| - comp->ArgumentAt(0)->value(),
|
| - NULL); // Can not deoptimize.
|
| + new LoadInstanceFieldComp(field, comp->ArgumentAt(0)->value());
|
| instr->set_computation(load);
|
| RemovePushArguments(comp);
|
| return true;
|
| @@ -671,8 +669,7 @@
|
| StoreInstanceFieldComp* store = new StoreInstanceFieldComp(
|
| field,
|
| comp->ArgumentAt(0)->value(),
|
| - comp->ArgumentAt(1)->value(),
|
| - NULL); // Can not deoptimize.
|
| + comp->ArgumentAt(1)->value());
|
| instr->set_computation(store);
|
| RemovePushArguments(comp);
|
| return true;
|
|
|