URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [ieee/] [unsafe-fp-assoc.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
#include <float.h> extern void abort(void); static const double C = DBL_MAX; double foo(double x) { return ( ( (x * C) * C ) * C); } int main () { double d = foo (0.0); if (d != 0.0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log