Skip to content

Commit f59e879

Browse files
creliercommit-bot@chromium.org
authored andcommitted
[vm/backend] Add missing compiler::target:: prefix.
This omission caused dartkp-strong-linux-release-simarm-crossword:language/type_variable/typedef_test to fail in pending CL https://dart-review.googlesource.com/c/sdk/+/166920/19 TEST=patchset flutter#20 of above mentioned CL. Change-Id: Iae11ccdbb1335bfcf1596636543cef4928f114b3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/176361 Reviewed-by: Siva Annamalai <asiva@google.com> Commit-Queue: Régis Crelier <regis@google.com>
1 parent cad324c commit f59e879

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

runtime/vm/compiler/backend/flow_graph_compiler.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2675,8 +2675,9 @@ SubtypeTestCachePtr FlowGraphCompiler::GenerateUninstantiatedTypeTest(
26752675
// Check if type arguments are null, i.e. equivalent to vector of dynamic.
26762676
__ CompareObject(kTypeArgumentsReg, Object::null_object());
26772677
__ 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()));
26802681
// kScratchReg: Concrete type of type.
26812682
// Check if type argument is dynamic, Object?, or void.
26822683
__ CompareObject(kScratchReg, Object::dynamic_type());

0 commit comments

Comments
 (0)