/* { dg-do compile { target { powerpc*-*-* } } } */ /* { dg-options "-mdejagnu-cpu=power9 -mvsx" } */ /* { dg-require-effective-target powerpc_vsx } */ /* { dg-require-effective-target has_arch_ppc64 } */ /* This test should succeed only on 64-bit configurations. */ #include double insert_exponent (unsigned long long int *significand_p, unsigned long long int *exponent_p) { unsigned long long int significand = *significand_p; unsigned long long int exponent = *exponent_p; return scalar_insert_exp (significand, exponent); } /* { dg-final { scan-assembler "xsiexpdp" } } */