aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenOpenCL/local.cl
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenOpenCL/local.cl')
-rw-r--r--test/CodeGenOpenCL/local.cl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenOpenCL/local.cl b/test/CodeGenOpenCL/local.cl
index da371f8e4648..6f44b684e94b 100644
--- a/test/CodeGenOpenCL/local.cl
+++ b/test/CodeGenOpenCL/local.cl
@@ -3,7 +3,7 @@
void func(local int*);
__kernel void foo(void) {
- // CHECK: @foo.i = internal addrspace(2) global i32 undef
+ // CHECK: @foo.i = internal addrspace(3) global i32 undef
__local int i;
func(&i);
}