1 /* Verify that overloaded built-ins for vec_mul with __int128
2 inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_vsx_ok } */
6 /* { dg-require-effective-target int128 } */
7 /* { dg-require-effective-target lp64 } */
8 /* { dg-options "-mdejagnu-cpu=power8 -mvsx -O2" } */
9 /* { dg-additional-options "-maix64" { target powerpc-ibm-aix* } } */
13 vector
signed __int128
14 test1 (vector
signed __int128 x
, vector
signed __int128 y
)
16 return vec_mul (x
, y
);
19 vector
unsigned __int128
20 test2 (vector
unsigned __int128 x
, vector
unsigned __int128 y
)
22 return vec_mul (x
, y
);
25 /* { dg-final { scan-assembler-times {\mmulld\M} 6 } } */
26 /* { dg-final { scan-assembler-times {\mmulhdu\M} 2 } } */