atomic-init.cl 740 B

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