Author: Matt Arsenault Date: 2026-03-08T09:12:30+01:00 New Revision: 327f16f7fbdc33d0d0c8995d76aa31249718fcef
URL: https://github.com/llvm/llvm-project/commit/327f16f7fbdc33d0d0c8995d76aa31249718fcef DIFF: https://github.com/llvm/llvm-project/commit/327f16f7fbdc33d0d0c8995d76aa31249718fcef.diff LOG: libclc: Rename sub_group_broadcast header (#185212) The other clc headers have the clc prefix, so add it. Added: libclc/clc/include/clc/subgroup/clc_sub_group_broadcast.h Modified: libclc/clc/lib/amdgcn/subgroup/sub_group_broadcast.cl libclc/opencl/lib/generic/subgroup/sub_group_broadcast.cl Removed: libclc/clc/include/clc/subgroup/sub_group_broadcast.h ################################################################################ diff --git a/libclc/clc/include/clc/subgroup/sub_group_broadcast.h b/libclc/clc/include/clc/subgroup/clc_sub_group_broadcast.h similarity index 100% rename from libclc/clc/include/clc/subgroup/sub_group_broadcast.h rename to libclc/clc/include/clc/subgroup/clc_sub_group_broadcast.h diff --git a/libclc/clc/lib/amdgcn/subgroup/sub_group_broadcast.cl b/libclc/clc/lib/amdgcn/subgroup/sub_group_broadcast.cl index 458d14b7ae523..d6dc95b574910 100644 --- a/libclc/clc/lib/amdgcn/subgroup/sub_group_broadcast.cl +++ b/libclc/clc/lib/amdgcn/subgroup/sub_group_broadcast.cl @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -#include "clc/subgroup/sub_group_broadcast.h" +#include "clc/subgroup/clc_sub_group_broadcast.h" _CLC_DEF _CLC_OVERLOAD _CLC_CONST char __clc_sub_group_broadcast(char x, uint sub_group_local_id) { diff --git a/libclc/opencl/lib/generic/subgroup/sub_group_broadcast.cl b/libclc/opencl/lib/generic/subgroup/sub_group_broadcast.cl index a2e4fae6795cc..9401653d089bc 100644 --- a/libclc/opencl/lib/generic/subgroup/sub_group_broadcast.cl +++ b/libclc/opencl/lib/generic/subgroup/sub_group_broadcast.cl @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -#include "clc/subgroup/sub_group_broadcast.h" +#include "clc/subgroup/clc_sub_group_broadcast.h" #define __CLC_BODY <sub_group_broadcast.inc> #include <clc/integer/gentype.inc> _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
