Unsigned constants for ISO_FORTRAN_ENV and ISO_C_BINDING.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / nmadd-3.c
blobb55de96c7a0b0b65bf00674744ee5f83316dfaaa
1 /* The same code as nmadd-2.c, but compiled with -fno-finite-math-only.
2 We can't use nmadd and nmsub in that case. */
3 /* { dg-do compile } */
4 /* { dg-options "-fno-fast-math -fno-finite-math-only -mmadd4 isa=4 -mhard-float" } */
5 /* { dg-final { scan-assembler-not "\tnmadd" } } */
6 /* { dg-final { scan-assembler-not "\tnmsub" } } */
8 float
9 sub1 (float f, float g, float h)
11 return -((f * g) + h);
14 double
15 sub2 (double f, double g, double h)
17 return -((f * g) + h);
20 float
21 sub3 (float f, float g, float h)
23 return -((f * g) - h);
26 double
27 sub4 (double f, double g, double h)
29 return -((f * g) - h);