| Index: runtime/vm/flow_graph_optimizer.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_optimizer.cc (revision 24590)
|
| +++ runtime/vm/flow_graph_optimizer.cc (working copy)
|
| @@ -5698,7 +5698,7 @@
|
| if (instr->left()->definition() == instr->right()->definition()) {
|
| // Fold x == x, and x != x to true/false for numbers and checked strict
|
| // comparisons.
|
| - if (instr->is_checked_strict_equal() ||
|
| + if (instr->IsCheckedStrictEqual() ||
|
| RawObject::IsIntegerClassId(instr->receiver_class_id())) {
|
| return SetValue(instr,
|
| (instr->kind() == Token::kEQ)
|
|
|