blob: 85715261d6196955b37296febc85fcfbc132084c [file] [log] [blame]
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 ();
}