[clang] [SYCL] Basic code generation for SYCL kernel caller offload entry point functions. (PR #133030)
Mariya Podchishchaeva via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 26 10:28:02 PDT 2025
================
@@ -732,6 +732,16 @@ CodeGenTypes::arrangeBuiltinFunctionDeclaration(CanQualType resultType,
RequiredArgs::All);
}
+const CGFunctionInfo &
+CodeGenTypes::arrangeSYCLKernelCallerDeclaration(QualType resultType,
+ const FunctionArgList &args) {
+ auto argTypes = getArgTypesForDeclaration(Context, args);
----------------
Fznamznon wrote:
Will this place eventually create more changes to kernel signature in order to support sycl accessor type?
https://github.com/llvm/llvm-project/pull/133030
More information about the cfe-commits
mailing list