[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / float128-odd.c
blob68c151059bcd96829d70ed58c0dc46762447c140
1 /* { dg-do compile { target { powerpc*-*-* && lp64 } } } */
2 /* { dg-require-effective-target powerpc_p9vector_ok } */
3 /* { dg-options "-mpower9-vector -O2" } */
5 /* Test the generation of the round to odd instructions. */
6 __float128
7 f128_add(__float128 a, __float128 b)
9 return __builtin_addf128_round_to_odd (a, b);
12 __float128
13 f128_sub (__float128 a, __float128 b)
15 return __builtin_subf128_round_to_odd (a, b);
18 __float128
19 f128_mul (__float128 a, __float128 b)
21 return __builtin_mulf128_round_to_odd (a, b);
24 __float128
25 f128_div (__float128 a, __float128 b)
27 return __builtin_divf128_round_to_odd (a, b);
30 __float128
31 f128_sqrt (__float128 a)
33 return __builtin_sqrtf128_round_to_odd (a);
36 double
37 f128_trunc (__float128 a)
39 return __builtin_truncf128_round_to_odd (a);
42 __float128
43 f128_fma (__float128 a, __float128 b, __float128 c)
45 return __builtin_fmaf128_round_to_odd (a, b, c);
48 __float128
49 f128_fms (__float128 a, __float128 b, __float128 c)
51 return __builtin_fmaf128_round_to_odd (a, b, -c);
54 __float128
55 f128_nfma (__float128 a, __float128 b, __float128 c)
57 return - __builtin_fmaf128_round_to_odd (a, b, c);
60 __float128
61 f128_nfms (__float128 a, __float128 b, __float128 c)
63 return - __builtin_fmaf128_round_to_odd (a, b, -c);
66 /* { dg-final { scan-assembler {\mxsaddqpo\M} } } */
67 /* { dg-final { scan-assembler {\mxssubqpo\M} } } */
68 /* { dg-final { scan-assembler {\mxsmulqpo\M} } } */
69 /* { dg-final { scan-assembler {\mxsdivqpo\M} } } */
70 /* { dg-final { scan-assembler {\mxssqrtqpo\M} } } */
71 /* { dg-final { scan-assembler {\mxscvqpdpo\M} } } */
72 /* { dg-final { scan-assembler {\mxsmaddqpo\M} } } */
73 /* { dg-final { scan-assembler {\mxsmsubqpo\M} } } */
74 /* { dg-final { scan-assembler {\mxsnmaddqpo\M} } } */
75 /* { dg-final { scan-assembler {\mxsnmsubqpo\M} } } */