| Index: runtime/vm/flow_graph_compiler_mips.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_mips.cc b/runtime/vm/flow_graph_compiler_mips.cc
|
| index 1b7347ee1116982ef6318daa2d7580a26f1fada8..b1a4f31d15c4027414ec7b073dc96b9b2a4f7a01 100644
|
| --- a/runtime/vm/flow_graph_compiler_mips.cc
|
| +++ b/runtime/vm/flow_graph_compiler_mips.cc
|
| @@ -622,11 +622,11 @@ void FlowGraphCompiler::GenerateInstanceOf(intptr_t token_pos,
|
| __ b(&done);
|
| }
|
| __ Bind(&is_not_instance);
|
| - __ LoadObject(V0, negate_result ? Bool::True() : Bool::False());
|
| + __ LoadObject(V0, Bool::Get(negate_result));
|
| __ b(&done);
|
|
|
| __ Bind(&is_instance);
|
| - __ LoadObject(V0, negate_result ? Bool::False() : Bool::True());
|
| + __ LoadObject(V0, Bool::Get(!negate_result));
|
| __ Bind(&done);
|
| // Remove instantiator (A2) and its type arguments (A1).
|
| __ Drop(2);
|
|
|