Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / ieee / pr29302-1.c
blobf6f3dd2cd539d9d8efe1a32f078a166e6f44538f
1 extern void abort (void);
3 int main (void)
5 int n;
6 long double x;
8 x = 1/0.0;
10 n = (x == 1/0.0);
12 if (n == 1)
13 return 0;
14 else
15 abort ();