You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
521 B
12 lines
521 B
4 months ago
|
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -cl-std=CL1.1
|
||
|
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only -cl-std=CL2.0
|
||
|
|
||
|
typedef float float4 __attribute__((ext_vector_type(4)));
|
||
|
|
||
|
void test_ext_vector_accessors(float4 V) {
|
||
|
V = V.wzyx;
|
||
|
V = V.abgr; // expected-warning {{vector component name 'a' is an OpenCL version 2.2 feature}}
|
||
|
V = V.xyzr; // expected-warning {{vector component name 'r' is an OpenCL version 2.2 feature}} \
|
||
|
// expected-error {{illegal vector component name 'r'}}
|
||
|
}
|