| Index: runtime/vm/intermediate_language_mips.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_mips.cc (revision 25902)
|
| +++ runtime/vm/intermediate_language_mips.cc (working copy)
|
| @@ -3423,7 +3423,7 @@
|
| LocationSummary* summary =
|
| new LocationSummary(kNumInputs, kNumTemps, LocationSummary::kNoCall);
|
| summary->set_in(0, Location::RequiresRegister());
|
| - if (!null_check()) {
|
| + if (!IsNullCheck()) {
|
| summary->AddTemp(Location::RequiresRegister());
|
| }
|
| return summary;
|
| @@ -3431,7 +3431,7 @@
|
|
|
|
|
| void CheckClassInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| - if (null_check()) {
|
| + if (IsNullCheck()) {
|
| Label* deopt = compiler->AddDeoptStub(deopt_id(),
|
| kDeoptCheckClass);
|
| __ BranchEqual(locs()->in(0).reg(),
|
|
|