Index: runtime/vm/flow_graph_compiler_arm64.cc |
diff --git a/runtime/vm/flow_graph_compiler_arm64.cc b/runtime/vm/flow_graph_compiler_arm64.cc |
index b86c581e49e590e5fcd813bb4a469852fa6e9ffa..2a237d9cf6e5737eb4f3bc8c460aa3934d15c10e 100644 |
--- a/runtime/vm/flow_graph_compiler_arm64.cc |
+++ b/runtime/vm/flow_graph_compiler_arm64.cc |
@@ -270,7 +270,8 @@ FlowGraphCompiler::GenerateInstantiatedTypeWithArgumentsTest( |
const Register kInstanceReg = R0; |
Error& bound_error = Error::Handle(zone()); |
const Type& int_type = Type::Handle(zone(), Type::IntType()); |
- const bool smi_is_ok = int_type.IsSubtypeOf(type, &bound_error, Heap::kOld); |
+ const bool smi_is_ok = |
+ int_type.IsSubtypeOf(type, &bound_error, NULL, Heap::kOld); |
// Malformed type should have been handled at graph construction time. |
ASSERT(smi_is_ok || bound_error.IsNull()); |
__ tsti(kInstanceReg, Immediate(kSmiTagMask)); |
@@ -310,7 +311,7 @@ FlowGraphCompiler::GenerateInstantiatedTypeWithArgumentsTest( |
ASSERT(tp_argument.HasResolvedTypeClass()); |
// Check if type argument is dynamic or Object. |
const Type& object_type = Type::Handle(zone(), Type::ObjectType()); |
- if (object_type.IsSubtypeOf(tp_argument, NULL, Heap::kOld)) { |
+ if (object_type.IsSubtypeOf(tp_argument, NULL, NULL, Heap::kOld)) { |
// Instance class test only necessary. |
return GenerateSubtype1TestCacheLookup( |
token_pos, type_class, is_instance_lbl, is_not_instance_lbl); |
@@ -370,6 +371,7 @@ bool FlowGraphCompiler::GenerateInstantiatedTypeNoArgumentsTest( |
type_class, |
TypeArguments::Handle(zone()), |
NULL, |
+ NULL, |
Heap::kOld)) { |
__ b(is_instance_lbl, EQ); |
} else { |
@@ -397,7 +399,7 @@ bool FlowGraphCompiler::GenerateInstantiatedTypeNoArgumentsTest( |
// Custom checking for numbers (Smi, Mint, Bigint and Double). |
// Note that instance is not Smi (checked above). |
if (type.IsSubtypeOf( |
- Type::Handle(zone(), Type::Number()), NULL, Heap::kOld)) { |
+ Type::Handle(zone(), Type::Number()), NULL, NULL, Heap::kOld)) { |
GenerateNumberTypeCheck( |
kClassIdReg, type, is_instance_lbl, is_not_instance_lbl); |
return false; |