URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr41094.c] - Rev 300
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