1 /* Verify that overloaded built-ins for vec_mul with char
2 inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_altivec_ok } */
6 /* { dg-options "-maltivec" } */
11 test3 (vector
signed char x
, vector
signed char y
)
13 return vec_mul (x
, y
);
17 test6 (vector
unsigned char x
, vector
unsigned char y
)
19 return vec_mul (x
, y
);
22 /* { dg-final { scan-assembler-times "\[ \t\]vmulesb" 2 } } */
23 /* { dg-final { scan-assembler-times "\[ \t\]vmulosb" 2 } } */