File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
runtime/vm/compiler/backend Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2675,8 +2675,9 @@ SubtypeTestCachePtr FlowGraphCompiler::GenerateUninstantiatedTypeTest(
2675
2675
// Check if type arguments are null, i.e. equivalent to vector of dynamic.
2676
2676
__ CompareObject (kTypeArgumentsReg , Object::null_object ());
2677
2677
__ BranchIf (EQUAL, is_instance_lbl);
2678
- __ LoadFieldFromOffset (kScratchReg , kTypeArgumentsReg ,
2679
- TypeArguments::type_at_offset (type_param.index ()));
2678
+ __ LoadFieldFromOffset (
2679
+ kScratchReg , kTypeArgumentsReg ,
2680
+ compiler::target::TypeArguments::type_at_offset (type_param.index ()));
2680
2681
// kScratchReg: Concrete type of type.
2681
2682
// Check if type argument is dynamic, Object?, or void.
2682
2683
__ CompareObject (kScratchReg , Object::dynamic_type ());
You can’t perform that action at this time.
0 commit comments