Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaOpenCL / invalid-image.cl
blob6e59c3feb2070a6a70d78c7e356f872806556162
1 // RUN: %clang_cc1 -verify -cl-std=clc++ %s
2 // RUN: %clang_cc1 -verify %s -cl-ext=+cl_khr_gl_msaa_sharing
3 // RUN: %clang_cc1 -verify %s -cl-ext=-cl_khr_gl_msaa_sharing
4 // RUN: %clang_cc1 -verify -D=ATTR_TEST -fms-compatibility %s
6 void test1(image1d_t *i) {} // expected-error-re{{pointer to type '{{__generic __read_only|__read_only}} image1d_t' is invalid in OpenCL}}
8 void test2(image1d_t i) {
9 image1d_t ti; // expected-error{{type '__private __read_only image1d_t' can only be used as a function parameter}}
10 image1d_t ai[] = {i, i}; // expected-error{{array of '__read_only image1d_t' type is invalid in OpenCL}}
11 i=i; // expected-error{{invalid operands to binary expression ('__private __read_only image1d_t' and '__private __read_only image1d_t')}}
12 i+1; // expected-error{{invalid operands to binary expression ('__private __read_only image1d_t' and 'int')}}
13 &i; // expected-error{{invalid argument type '__private __read_only image1d_t' to unary expression}}
14 *i; // expected-error{{invalid argument type '__private __read_only image1d_t' to unary expression}}
17 image1d_t test3() {} // expected-error{{declaring function return value of type '__read_only image1d_t' is not allowed}}
19 #ifdef ATTR_TEST
20 // Test case for an infinite loop bug.
21 kernel void foob(read_only __ptr32 image2d_t i) { } // expected-error{{'__ptr32' attribute only applies to pointer arguments}}
22 #endif
24 typedef int image1d_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
25 typedef int image2d_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
26 typedef int image3d_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
27 typedef int image1d_array_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
28 typedef int image2d_array_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
29 typedef int image2d_depth_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
30 typedef int image1d_buffer_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}
32 // Image types from 'cl_khr_gl_msaa_sharing' are not reserved identifiers.
33 typedef int image2d_msaa_t;
34 typedef int image2d_array_msaa_t;
35 typedef int image2d_msaa_depth_t;
36 typedef int image2d_array_msaa_depth_t;
37 #ifdef cl_khr_gl_msaa_sharing
38 // expected-error@-5{{cannot combine with previous 'int' declaration specifier}} expected-warning@-5{{typedef requires a name}}
39 // expected-error@-5{{cannot combine with previous 'int' declaration specifier}} expected-warning@-5{{typedef requires a name}}
40 // expected-error@-5{{cannot combine with previous 'int' declaration specifier}} expected-warning@-5{{typedef requires a name}}
41 // expected-error@-5{{cannot combine with previous 'int' declaration specifier}} expected-warning@-5{{typedef requires a name}}
42 #endif
43 void foo(image2d_msaa_t i);