Anastasia Stulova | 2c4730d | 2019-02-15 12:07:57 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -verify -cl-std=c++ %s |
Xiuli Pan | 379554a | 2016-02-25 03:34:20 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -verify %s |
Joey Gouly | f9889f2 | 2016-11-16 11:34:09 +0000 | [diff] [blame] | 3 | // RUN: %clang_cc1 -verify -D=ATTR_TEST -fms-compatibility %s |
Xiuli Pan | 379554a | 2016-02-25 03:34:20 +0000 | [diff] [blame] | 4 | |
Anastasia Stulova | 2c4730d | 2019-02-15 12:07:57 +0000 | [diff] [blame] | 5 | void test1(image1d_t *i) {} // expected-error-re{{pointer to type '{{__generic __read_only|__read_only}} image1d_t' is invalid in OpenCL}} |
Xiuli Pan | 379554a | 2016-02-25 03:34:20 +0000 | [diff] [blame] | 6 | |
| 7 | void test2(image1d_t i) { |
Anastasia Stulova | 4d85003 | 2016-07-11 13:46:02 +0000 | [diff] [blame] | 8 | image1d_t ti; // expected-error{{type '__read_only image1d_t' can only be used as a function parameter}} |
| 9 | image1d_t ai[] = {i, i}; // expected-error{{array of '__read_only image1d_t' type is invalid in OpenCL}} |
| 10 | i=i; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and '__read_only image1d_t')}} |
| 11 | i+1; // expected-error{{invalid operands to binary expression ('__read_only image1d_t' and 'int')}} |
| 12 | &i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}} |
| 13 | *i; // expected-error{{invalid argument type '__read_only image1d_t' to unary expression}} |
Xiuli Pan | 379554a | 2016-02-25 03:34:20 +0000 | [diff] [blame] | 14 | } |
Anastasia Stulova | 4d85003 | 2016-07-11 13:46:02 +0000 | [diff] [blame] | 15 | |
| 16 | image1d_t test3() {} // expected-error{{declaring function return value of type '__read_only image1d_t' is not allowed}} |
Joey Gouly | f9889f2 | 2016-11-16 11:34:09 +0000 | [diff] [blame] | 17 | |
| 18 | #ifdef ATTR_TEST |
| 19 | // Test case for an infinite loop bug. |
| 20 | kernel void foob(read_only __ptr32 image2d_t i) { } // expected-error{{'__ptr32' attribute only applies to pointer arguments}} |
| 21 | #endif |