URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.target/] [mips/] [nmadd-1.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-mips-options "-O2 -ffast-math -mips4 -mhard-float" } */ /* { dg-final { scan-assembler "nmadd.s" } } */ /* { dg-final { scan-assembler "nmadd.d" } } */ /* { dg-final { scan-assembler "nmsub.s" } } */ /* { dg-final { scan-assembler "nmsub.d" } } */ float sub1 (float f, float g, float h) { return -((f * g) + h); } double sub2 (double f, double g, double h) { return -((f * g) + h); } float sub3 (float f, float g, float h) { return -((f * g) - h); } double sub4 (double f, double g, double h) { return -((f * g) - h); }
Go to most recent revision | Compare with Previous | Blame | View Log