URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr43730.c] - Rev 716
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O0" } */ extern int (isinfl)(long double); int bugfun(long double x, long double y) { int result; if (isinfl(x)) result = isinfl(y); else { int kx, ky; kx = ky = 1; result = (kx == ky); } return (result); }
Go to most recent revision | Compare with Previous | Blame | View Log