OSDN Git Service

PR middle-end/35456
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 20040208-2.c
1 int main ()
2 {
3   long double x, y;
4
5   x = 0x1.fffffffffffff8p1022L;
6   x *= 2;
7   y = 0x1.fffffffffffff8p1023L;
8   if (memcmp (&x, &y, sizeof (x)) != 0)
9     abort ();
10   exit (0);
11 }