llvm-project/clang/test/SemaOpenCLCXX/method-overload-address-space.clcpp
Anastasia Stulova d1c8a151df [OpenCL] Added distinct file extension for C++ for OpenCL.
Files compiled with C++ for OpenCL mode can now have a distinct
file extension - clcpp, then clang driver picks the compilation
mode automatically (-x clcpp) without the use of -cl-std=clc++.

Differential Revision: https://reviews.llvm.org/D96771
2021-03-24 13:07:04 +00:00

21 lines
574 B
Plaintext

//RUN: %clang_cc1 %s -triple spir-unknown-unknown -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'}}
}