URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [vmx/] [ira2c.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ double __fabs(double a) { return a; } double __fmadd(double a, double b, double c) { return a*b+c; } double test(double f32a, double f32b, double f32c) { f32c = __fabs(f32a); return __fmadd(f32a, f32b, f32c); }
Go to most recent revision | Compare with Previous | Blame | View Log