URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [ieee/] [minuszero.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
main () { union { double d; unsigned short i[sizeof (double) / sizeof (short)]; } u; int a = 0; int b = -5; int j; u.d = (double) a / b; /* Look for the right pattern, but be sloppy since we don't know the byte order. */ for (j = 0; j < sizeof (double) / sizeof (short); j++) { if (u.i[j] == 0x8000) exit (0); } abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log