URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr41094.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-ffast-math" } */ #include <math.h> extern void abort (void); double foo(void) { double x = -4.0; return pow (x * x, 0.25); } int main() { if (foo() != 2.0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log