Home
last modified time | relevance | path

Searched refs:__v3hi (Results 1 – 1 of 1) sorted by relevance

/external/clang/test/SemaCXX/
Dvector-casts.cpp5 typedef short __v3hi __attribute__((__ext_vector_type__(3))); typedef
13 __v3hi v3hi; in f()
49 …(void)(__v3hi)v4hi; // expected-error {{C-style cast from vector '__v4hi' (vector of 4 'short' val… in f()
50 …(void)(__v3hi)v2si; // expected-error {{C-style cast from vector '__v2si' (vector of 2 'int' value… in f()
53 …(void)reinterpret_cast<__v3hi>(v4hi); // expected-error {{reinterpret_cast from vector '__v4hi' (v… in f()
54 …(void)reinterpret_cast<__v3hi>(v2si); // expected-error {{reinterpret_cast from vector '__v2si' (v… in f()
71 __v4hi threeToFour(__v3hi v) { // expected-note {{not viable}} in threeToFour()
74 __v3hi fourToThree(__v4hi v) { // expected-note {{not viable}} in fourToThree()
81 void call4to3(__v3hi v) { in call4to3()