| Index: runtime/vm/flow_graph_compiler_arm.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_arm.cc b/runtime/vm/flow_graph_compiler_arm.cc
|
| index 5fc4e0c313969bdaf60895db1bcc39077ec71f76..0f502ccf62b8440aef388f5de36525b444f06660 100644
|
| --- a/runtime/vm/flow_graph_compiler_arm.cc
|
| +++ b/runtime/vm/flow_graph_compiler_arm.cc
|
| @@ -619,11 +619,11 @@ void FlowGraphCompiler::GenerateInstanceOf(intptr_t token_pos,
|
| __ b(&done);
|
| }
|
| __ Bind(&is_not_instance);
|
| - __ LoadObject(R0, negate_result ? Bool::True() : Bool::False());
|
| + __ LoadObject(R0, Bool::Get(negate_result));
|
| __ b(&done);
|
|
|
| __ Bind(&is_instance);
|
| - __ LoadObject(R0, negate_result ? Bool::False() : Bool::True());
|
| + __ LoadObject(R0, Bool::Get(!negate_result));
|
| __ Bind(&done);
|
| // Remove instantiator (R2) and its type arguments (R1).
|
| __ Drop(2);
|
|
|