brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.2 KiB · 6e59c3f Raw
44 lines · plain
1// RUN: %clang_cc1 -verify -cl-std=clc++ %s2// RUN: %clang_cc1 -verify %s -cl-ext=+cl_khr_gl_msaa_sharing3// RUN: %clang_cc1 -verify %s -cl-ext=-cl_khr_gl_msaa_sharing4// RUN: %clang_cc1 -verify -D=ATTR_TEST -fms-compatibility %s5 6void test1(image1d_t *i) {} // expected-error-re{{pointer to type '{{__generic __read_only|__read_only}} image1d_t' is invalid in OpenCL}}7 8void 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}}15}16 17image1d_t test3() {} // expected-error{{declaring function return value of type '__read_only image1d_t' is not allowed}}18 19#ifdef ATTR_TEST20// Test case for an infinite loop bug.21kernel void foob(read_only __ptr32  image2d_t i) { } // expected-error{{'__ptr32' attribute only applies to pointer arguments}}22#endif23 24typedef int image1d_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}25typedef int image2d_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}26typedef int image3d_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}27typedef int image1d_array_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}28typedef int image2d_array_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}29typedef int image2d_depth_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}30typedef int image1d_buffer_t; // expected-error{{cannot combine with previous 'int' declaration specifier}} expected-warning{{typedef requires a name}}31 32// Image types from 'cl_khr_gl_msaa_sharing' are not reserved identifiers.33typedef int image2d_msaa_t;34typedef int image2d_array_msaa_t;35typedef int image2d_msaa_depth_t;36typedef int image2d_array_msaa_depth_t;37#ifdef cl_khr_gl_msaa_sharing38// 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#endif43void foo(image2d_msaa_t i);44