[PATCH] D92091: [OpenCL] Allow pointer-to-pointer kernel args beyond CL 1.2

Sven van Haastregt via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 30 08:24:38 PST 2020


svenvh added inline comments.


================
Comment at: clang/test/SemaOpenCL/invalid-kernel-parameters.cl:13
 kernel void no_ptrptr(global int * global *i) { }
+kernel void no_ptrptrptr(global int * global * global *i) { }
 
----------------
Anastasia wrote:
> Btw this was missing in the original testing, could we add a line with `__constant ` and `__local`? Or perhaps just replace the first two `global` in this line.
Sure, will do!


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D92091/new/

https://reviews.llvm.org/D92091



More information about the cfe-commits mailing list