/* Verify that overloaded built-ins for vec_msum with __int128 inputs generate the proper code. */ /* { dg-do compile } */ /* { dg-require-effective-target powerpc_p9vector_ok } */ /* { dg-require-effective-target int128 } */ /* { dg-options "-mdejagnu-cpu=power9 -O3" } */ #include vector signed __int128 test_msum_si (vector signed long long vsll_1, vector signed long long vsll_2, vector signed __int128 vsi128) { return vec_msum (vsll_1, vsll_2, vsi128); } vector unsigned __int128 test_msum_ui (vector unsigned long long vull_1, vector unsigned long long vull_2, vector unsigned __int128 vui128) { return vec_msum (vull_1, vull_2, vui128); } /* { dg_final { scan_assembler_times "vmsumudm" 2 } } */