svenvh created this revision. svenvh added a reviewer: azabaznov. svenvh added a project: clang. Herald added subscribers: Naghasan, ldrumm, yaxunl. Herald added a project: All. svenvh requested review of this revision. Herald added a subscriber: cfe-commits.
Align with the `-fdeclare-opencl-builtins` option and other get_image_* builtins which have the const attribute. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D122728 Files: clang/lib/Headers/opencl-c.h Index: clang/lib/Headers/opencl-c.h =================================================================== --- clang/lib/Headers/opencl-c.h +++ clang/lib/Headers/opencl-c.h @@ -16118,21 +16118,21 @@ * Return the number of samples associated with image */ #if defined(cl_khr_gl_msaa_sharing) -int __ovld get_image_num_samples(read_only image2d_msaa_t); -int __ovld get_image_num_samples(read_only image2d_msaa_depth_t); -int __ovld get_image_num_samples(read_only image2d_array_msaa_t); -int __ovld get_image_num_samples(read_only image2d_array_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_msaa_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_array_msaa_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_array_msaa_depth_t); -int __ovld get_image_num_samples(write_only image2d_msaa_t); -int __ovld get_image_num_samples(write_only image2d_msaa_depth_t); -int __ovld get_image_num_samples(write_only image2d_array_msaa_t); -int __ovld get_image_num_samples(write_only image2d_array_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_msaa_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_array_msaa_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_array_msaa_depth_t); #if defined(__opencl_c_read_write_images) -int __ovld get_image_num_samples(read_write image2d_msaa_t); -int __ovld get_image_num_samples(read_write image2d_msaa_depth_t); -int __ovld get_image_num_samples(read_write image2d_array_msaa_t); -int __ovld get_image_num_samples(read_write image2d_array_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_msaa_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_array_msaa_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_array_msaa_depth_t); #endif //defined(__opencl_c_read_write_images) #endif
Index: clang/lib/Headers/opencl-c.h =================================================================== --- clang/lib/Headers/opencl-c.h +++ clang/lib/Headers/opencl-c.h @@ -16118,21 +16118,21 @@ * Return the number of samples associated with image */ #if defined(cl_khr_gl_msaa_sharing) -int __ovld get_image_num_samples(read_only image2d_msaa_t); -int __ovld get_image_num_samples(read_only image2d_msaa_depth_t); -int __ovld get_image_num_samples(read_only image2d_array_msaa_t); -int __ovld get_image_num_samples(read_only image2d_array_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_msaa_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_array_msaa_t); +int __ovld __cnfn get_image_num_samples(read_only image2d_array_msaa_depth_t); -int __ovld get_image_num_samples(write_only image2d_msaa_t); -int __ovld get_image_num_samples(write_only image2d_msaa_depth_t); -int __ovld get_image_num_samples(write_only image2d_array_msaa_t); -int __ovld get_image_num_samples(write_only image2d_array_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_msaa_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_array_msaa_t); +int __ovld __cnfn get_image_num_samples(write_only image2d_array_msaa_depth_t); #if defined(__opencl_c_read_write_images) -int __ovld get_image_num_samples(read_write image2d_msaa_t); -int __ovld get_image_num_samples(read_write image2d_msaa_depth_t); -int __ovld get_image_num_samples(read_write image2d_array_msaa_t); -int __ovld get_image_num_samples(read_write image2d_array_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_msaa_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_msaa_depth_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_array_msaa_t); +int __ovld __cnfn get_image_num_samples(read_write image2d_array_msaa_depth_t); #endif //defined(__opencl_c_read_write_images) #endif
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits