| Index: runtime/vm/flow_graph_compiler_mips.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler_mips.cc (revision 37955)
|
| +++ runtime/vm/flow_graph_compiler_mips.cc (working copy)
|
| @@ -591,7 +591,7 @@
|
| __ lw(A2, Address(SP, 1 * kWordSize));
|
|
|
| __ addiu(SP, SP, Immediate(-6 * kWordSize));
|
| - __ LoadObject(TMP, Object::ZoneHandle());
|
| + __ LoadObject(TMP, Object::null_object());
|
| __ sw(TMP, Address(SP, 5 * kWordSize)); // Make room for the result.
|
| __ sw(A0, Address(SP, 4 * kWordSize)); // Push the instance.
|
| __ LoadObject(TMP, type);
|
| @@ -664,7 +664,7 @@
|
| // Generate throw new TypeError() if the type is malformed or malbounded.
|
| if (dst_type.IsMalformedOrMalbounded()) {
|
| __ addiu(SP, SP, Immediate(-4 * kWordSize));
|
| - __ LoadObject(TMP, Object::ZoneHandle());
|
| + __ LoadObject(TMP, Object::null_object());
|
| __ sw(TMP, Address(SP, 3 * kWordSize)); // Make room for the result.
|
| __ sw(A0, Address(SP, 2 * kWordSize)); // Push the source object.
|
| __ LoadObject(TMP, dst_name);
|
| @@ -699,7 +699,7 @@
|
| __ lw(A2, Address(SP, 1 * kWordSize));
|
|
|
| __ addiu(SP, SP, Immediate(-7 * kWordSize));
|
| - __ LoadObject(TMP, Object::ZoneHandle());
|
| + __ LoadObject(TMP, Object::null_object());
|
| __ sw(TMP, Address(SP, 6 * kWordSize)); // Make room for the result.
|
| __ sw(A0, Address(SP, 5 * kWordSize)); // Push the source object.
|
| __ LoadObject(TMP, dst_type);
|
|
|