1 | // RUN: %clang_cc1 -O0 -cl-std=CL2.0 -fsyntax-only -verify %s |
2 | |
3 | global atomic_int a1 = 0; |
4 | |
5 | kernel void test_atomic_initialization() { |
6 | a1 = 1; // expected-error {{atomic variable can be assigned to a variable only in global address space}} |
7 | atomic_int a2 = 0; // expected-error {{atomic variable can be initialized to a variable only in global address space}} |
8 | private atomic_int a3 = 0; // expected-error {{atomic variable can be initialized to a variable only in global address space}} |
9 | local atomic_int a4 = 0; // expected-error {{'__local' variable cannot have an initializer}} |
10 | global atomic_int a5 = 0; // expected-error {{function scope variable cannot be declared in global address space}} |
11 | static global atomic_int a6 = 0; |
12 | } |
13 | |