Lines Matching refs:changes
10 …ip = gip; // expected-error {{assigning '__global int *' to 'int *' changes address space of point…
11 …ip = &li; // expected-error {{assigning '__local int *' to 'int *' changes address space of pointe…
12 …ip = &ci; // expected-error {{assigning '__constant int *' to 'int *' changes address space of poi…
17 … // expected-error {{casting '__local int *' to type '__global int *' changes address space of …
18 … // expected-error {{casting '__constant int *' to type '__global int *' changes address space of …
19 …pected-error {{casting 'const __constant int *' to type '__global int *' changes address space of …
20 …g = (global int*) p; // expected-error {{casting 'int *' to type '__global int *' changes addre…
22 … // expected-error {{casting '__global int *' to type '__local int *' changes address space of …
23 … // expected-error {{casting '__constant int *' to type '__local int *' changes address space of …
24 …xpected-error {{casting 'const __constant int *' to type '__local int *' changes address space of …
25 …l = (local int*) p; // expected-error {{casting 'int *' to type '__local int *' changes addres…
27 … // expected-error {{casting '__global int *' to type '__constant int *' changes address space of …
28 … // expected-error {{casting '__local int *' to type '__constant int *' changes address space of …
29 …c = (constant int*) p; // expected-error {{casting 'int *' to type '__constant int *' changes add…
31 …p = (private int*) g; // expected-error {{casting '__global int *' to type 'int *' changes addre…
32 …p = (private int*) l; // expected-error {{casting '__local int *' to type 'int *' changes addres…
33 …p = (private int*) c; // expected-error {{casting '__constant int *' to type 'int *' changes add…
34 …c; // expected-error {{casting 'const __constant int *' to type 'int *' changes address space of …