tcc-65816/test/tests/20040208-2.c
2017-06-09 13:52:12 +02:00

12 lines
173 B
C

int main ()
{
long double x, y;
x = 0x1.fffffffffffff8p10L;
x *= 2;
y = 0x1.fffffffffffff8p11L;
if (memcmp (&x, &y, sizeof (x)) != 0)
abort ();
exit (0);
}