| Index: runtime/vm/intermediate_language_arm.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_arm.cc (revision 24590)
|
| +++ runtime/vm/intermediate_language_arm.cc (working copy)
|
| @@ -313,7 +313,7 @@
|
| locs->set_out(Location::RequiresRegister());
|
| return locs;
|
| }
|
| - if (is_checked_strict_equal()) {
|
| + if (IsCheckedStrictEqual()) {
|
| const intptr_t kNumTemps = 1;
|
| LocationSummary* locs =
|
| new LocationSummary(kNumInputs, kNumTemps, LocationSummary::kNoCall);
|
| @@ -756,7 +756,7 @@
|
| EmitDoubleComparisonOp(compiler, *locs(), kind(), kNoBranch);
|
| return;
|
| }
|
| - if (is_checked_strict_equal()) {
|
| + if (IsCheckedStrictEqual()) {
|
| EmitCheckedStrictEqual(compiler, *ic_data(), *locs(), kind(), kNoBranch,
|
| deopt_id());
|
| return;
|
| @@ -797,7 +797,7 @@
|
| EmitDoubleComparisonOp(compiler, *locs(), kind(), branch);
|
| return;
|
| }
|
| - if (is_checked_strict_equal()) {
|
| + if (IsCheckedStrictEqual()) {
|
| EmitCheckedStrictEqual(compiler, *ic_data(), *locs(), kind(), branch,
|
| deopt_id());
|
| return;
|
|
|