blob: 457d5cbac86c429ff94fd4d3e5cbd7524117f02f [file] [log] [blame]
void abort (void);
void exit (int);
int main ()
{
long double x;
x = 0x1.0p-500L;
x *= 0x1.0p-522L;
if (x != 0x1.0p-1022L)
abort ();
exit (0);
}