aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040208-1.c
blob: 0235759107272349eadfcb9c20775f2ca6cf2e1d (plain)
1
2
3
4
5
6
7
8
9
10
int main ()
{
  long double x;

  x = 0x1.0p-500L;
  x *= 0x1.0p-522L;
  if (x != 0x1.0p-1022L)
    abort ();
  exit (0);
}