blob: 8208a85c3dabc19dc37ed49834b0fb200d00dd36 [file] [log] [blame]
Egor Churaev3bccec52017-04-05 12:47:10 +00001// RUN: %clang_cc1 -O0 -cl-std=CL2.0 -fsyntax-only -verify %s
2
3global atomic_int a1 = 0;
4
5kernel 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}