[RS6000] Tests that use int128_t and -m32
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / bfp / scalar-insert-exp-11.c
bloba5dd852e60f0aaad3deb1d4c871b2918f3b9f5be
1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-require-effective-target powerpc_p9vector_ok } */
4 /* { dg-options "-mdejagnu-cpu=power9" } */
6 /* This test only runs on 32-bit configurations, where a compiler error
7 should be issued because this builtin is not available on
8 32-bit configurations. */
10 #include <altivec.h>
12 __ieee128
13 insert_exponent (__ieee128 *significand_p,
14 unsigned long long int *exponent_p)
16 __ieee128 significand = *significand_p;
17 unsigned long long int exponent = *exponent_p;
19 return scalar_insert_exp (significand, exponent); /* { dg-error "requires ISA 3.0 IEEE 128-bit floating point" } */