diff options
Diffstat (limited to 'test/CodeGenOpenCL/local.cl')
-rw-r--r-- | test/CodeGenOpenCL/local.cl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CodeGenOpenCL/local.cl b/test/CodeGenOpenCL/local.cl index 32fa7be..b4bd008 100644 --- a/test/CodeGenOpenCL/local.cl +++ b/test/CodeGenOpenCL/local.cl @@ -5,3 +5,8 @@ __kernel void foo(void) { __local int i; ++i; } + +// CHECK: define void @_Z3barPU3AS2i +__kernel void __attribute__((__overloadable__)) bar(local int *x) { + *x = 5; +} |