URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [ieee/] [980619-1.c] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
int main(void) { float reale = 1.0f; float oneplus; int i; if (sizeof (float) != 4) exit (0); for (i = 0; ; i++) { oneplus = 1.0f + reale; if (oneplus == 1.0f) break; reale=reale/2.0f; } /* Assumes ieee754 accurate arithmetic above. */ if (i != 24) abort (); else exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log