| Index: runtime/vm/intrinsifier_mips.cc
|
| diff --git a/runtime/vm/intrinsifier_mips.cc b/runtime/vm/intrinsifier_mips.cc
|
| index cf543d861315e473d3295a3f467611266fccb2eb..57cb4d6fcca0e90e68e0dcceea55c0e223860911 100644
|
| --- a/runtime/vm/intrinsifier_mips.cc
|
| +++ b/runtime/vm/intrinsifier_mips.cc
|
| @@ -34,7 +34,7 @@ intptr_t Intrinsifier::ParameterSlotFromSp() { return -1; }
|
| // Intrinsify only for Smi value and index. Non-smi values need a store buffer
|
| // update. Array length is always a Smi.
|
| void Intrinsifier::ObjectArraySetIndexed(Assembler* assembler) {
|
| - if (Isolate::Current()->flags().type_checks()) {
|
| + if (Isolate::Current()->type_checks()) {
|
| return;
|
| }
|
|
|
| @@ -106,7 +106,7 @@ void Intrinsifier::GrowableArray_Allocate(Assembler* assembler) {
|
| // On stack: growable array (+1), value (+0).
|
| void Intrinsifier::GrowableArray_add(Assembler* assembler) {
|
| // In checked mode we need to type-check the incoming argument.
|
| - if (Isolate::Current()->flags().type_checks()) return;
|
| + if (Isolate::Current()->type_checks()) return;
|
| Label fall_through;
|
| __ lw(T0, Address(SP, 1 * kWordSize)); // Array.
|
| __ lw(T1, FieldAddress(T0, GrowableObjectArray::length_offset()));
|
|
|