Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
Dvector-casts.cpp14 __v4hi v4hi; in f() local
21 (void)reinterpret_cast<__v2si>(v4hi); in f()
22 (void)(__v2si)v4hi; in f()
44 …(void)reinterpret_cast<__v8hi>(v4hi); // expected-error {{reinterpret_cast from vector '__v4hi' (v… in f()
45 …(void)(__v8hi)v4hi; // expected-error {{C-style cast from vector '__v4hi' (vector of 4 'short' val… in f()
49 …(void)(__v3hi)v4hi; // expected-error {{C-style cast from vector '__v4hi' (vector of 4 'short' val… in f()
53 …(void)reinterpret_cast<__v3hi>(v4hi); // expected-error {{reinterpret_cast from vector '__v4hi' (v… in f()
/external/clang/test/CodeGen/
Doverloadable.c9 typedef short v4hi __attribute__ ((__vector_size__ (8))); typedef
10 v4hi __attribute__((overloadable)) f(v4hi x) { return x; } in f()
24 v4hi vv; in main()