c++: normalizing ttp constraints [PR115656]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-select-short.c
blob0d11fce81b2afcc7c4a7844db777a3f17d7e4450
1 /* Verify that overloaded built-ins for vec_sel with short
2 inputs produce the right code. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_vsx_ok } */
6 /* { dg-options "-maltivec -O2" } */
8 #include <altivec.h>
10 vector bool short
11 test1_0 (vector bool short x, vector bool short y, vector bool short z)
13 return vec_sel (x, y, z);
16 vector bool short
17 test1_1 (vector bool short x, vector bool short y, vector unsigned short z)
19 return vec_sel (x, y, z);
22 vector signed short
23 test3_0 (vector signed short x, vector signed short y, vector bool short z)
25 return vec_sel (x, y, z);
28 vector signed short
29 test3_1 (vector signed short x, vector signed short y, vector unsigned short z)
31 return vec_sel (x, y, z);
34 vector unsigned short
35 test6_0 (vector unsigned short x, vector unsigned short y, vector bool short z)
37 return vec_sel (x, y, z);
40 vector unsigned short
41 test6_1 (vector unsigned short x, vector unsigned short y, vector unsigned short z)
43 return vec_sel (x, y, z);
46 /* { dg-final { scan-assembler-times {\mxxsel\M|\mvsel\M} 6 } } */