| Index: runtime/vm/flow_graph_compiler_x64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
|
| index fd4866e003e099c0ff55a10758d3e79858299d65..e7bf960b18350033d4649af20888569835a0a423 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_x64.cc
|
| @@ -344,7 +344,7 @@ RawSubtypeTestCache* FlowGraphCompiler::GenerateUninstantiatedTypeTest(
|
| Label not_smi;
|
| __ testq(RAX, Immediate(kSmiTagMask)); // Value is Smi?
|
| __ j(NOT_ZERO, ¬_smi, Assembler::kNearJump);
|
| - __ CompareObject(RDI, Type::ZoneHandle(Type::IntInterface()));
|
| + __ CompareObject(RDI, Type::ZoneHandle(Type::IntType()));
|
| __ j(EQUAL, is_instance_lbl);
|
| __ CompareObject(RDI, Type::ZoneHandle(Type::Number()));
|
| __ j(EQUAL, is_instance_lbl);
|
|
|