blob: cc7d16366350c9115f042a186945e05545bc2667 [file] [log] [blame]
Xiuli Pan379554a2016-02-25 03:34:20 +00001// RUN: %clang_cc1 -verify %s
Joey Goulyf9889f22016-11-16 11:34:09 +00002// RUN: %clang_cc1 -verify -D=ATTR_TEST -fms-compatibility %s
Xiuli Pan379554a2016-02-25 03:34:20 +00003
Anastasia Stulova4d850032016-07-11 13:46:02 +00004void test1(image1d_t *i) {} // expected-error{{pointer to type '__read_only image1d_t' is invalid in OpenCL}}
Xiuli Pan379554a2016-02-25 03:34:20 +00005
6void test2(image1d_t i) {
Anastasia Stulova4d850032016-07-11 13:46:02 +00007 image1d_t ti; // expected-error{{type '__read_only image1d_t' can only be used as a function parameter}}
8 image1d_t ai[] = {i, i}; // expected-error{{array of '__read_only image1d_t' type is invalid in OpenCL}}
9 i=i; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and '__read_only image1d_t')}}
10 i+1; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and 'int')}}
11 &i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}}
12 *i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}}
Xiuli Pan379554a2016-02-25 03:34:20 +000013}
Anastasia Stulova4d850032016-07-11 13:46:02 +000014
15image1d_t test3() {} // expected-error{{declaring function return value of type '__read_only image1d_t' is not allowed}}
Joey Goulyf9889f22016-11-16 11:34:09 +000016
17#ifdef ATTR_TEST
18// Test case for an infinite loop bug.
19kernel void foob(read_only __ptr32 image2d_t i) { } // expected-error{{'__ptr32' attribute only applies to pointer arguments}}
20#endif