Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / mips / nmadd-3.c
blob381fdef08fb4845235e1f41422d4ce99a03394e3
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-mips-options "-O2 -fno-fast-math -fno-finite-math-only -mips4 -mhard-float" } */
5 /* { dg-final { scan-assembler-not "nmadd.s" } } */
6 /* { dg-final { scan-assembler-not "nmadd.d" } } */
7 /* { dg-final { scan-assembler-not "nmsub.s" } } */
8 /* { dg-final { scan-assembler-not "nmsub.d" } } */
10 float
11 sub1 (float f, float g, float h)
13 return -((f * g) + h);
16 double
17 sub2 (double f, double g, double h)
19 return -((f * g) + h);
22 float
23 sub3 (float f, float g, float h)
25 return -((f * g) - h);
28 double
29 sub4 (double f, double g, double h)
31 return -((f * g) - h);