Skip to content

Commit 589d43d

Browse files
authored
List cl_khr_icd_unloadable in correct place; NFC (#2661)
cl_khr_icd_unloadable is an API-only extension, so make sure it's in the correct place in test_compiler's extension list. This has no functional effect currently, because commit 5af0e74 ("Add cl_khr_icd_unloadable to the list of known_extensions (#2605)", 2026-01-20) did not bump `first_API_extension` such that cl_khr_icd_unloadable was already treated as an API-only extension. Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
1 parent 7deecbe commit 589d43d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_conformance/compiler/test_compiler_defines_for_extensions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ const char *known_extensions[] = {
5656
"cl_khr_integer_dot_product",
5757
"cl_khr_subgroup_rotate",
5858
"cl_khr_kernel_clock",
59-
"cl_khr_icd_unloadable",
6059
// API-only extensions after this point. If you add above here, modify
6160
// first_API_extension below.
6261
"cl_khr_icd",
62+
"cl_khr_icd_unloadable",
6363
"cl_khr_gl_sharing",
6464
"cl_khr_gl_event",
6565
"cl_khr_d3d10_sharing",

0 commit comments

Comments
 (0)