summaryrefslogtreecommitdiffstats
path: root/test/SemaOpenCLCXX/method-overload-address-space.cl
blob: 7c428a570c2ce4ac0eb433d57382486b13cafea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//RUN: %clang_cc1 %s -triple spir-unknown-unknown -cl-std=clc++ -pedantic -verify

struct C {
  void m1() __local __local; //expected-warning{{multiple identical address spaces specified for type}}
  //expected-note@-1{{candidate function}}
  void m1() __global;
  //expected-note@-1{{candidate function}}
  void m2() __global __local; //expected-error{{multiple address spaces specified for type}}
};

__global C c_glob;

__kernel void bar() {
  __local C c_loc;
  C c_priv;

  c_glob.m1();
  c_loc.m1();
  c_priv.m1(); //expected-error{{no matching member function for call to 'm1'}}
}