summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaOpenCL/invalid-image.cl
blob: ed8af095792b7366f2b066e526f26d9c1b503044 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -verify %s

void test1(image1d_t *i) {} // expected-error {{pointer to type '__read_only image1d_t' is invalid in OpenCL}}

void test2(image1d_t i) {
  image1d_t ti;            // expected-error {{type '__read_only image1d_t' can only be used as a function parameter}}
  image1d_t ai[] = {i, i}; // expected-error {{array of '__read_only image1d_t' type is invalid in OpenCL}}
}
OpenPOWER on IntegriCloud