Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr69117.c
blobfbf82c1535687f4599c80709e97f0adf14bbb219
1 /* { dg-do run } */
2 /* { dg-additional-options "-fstrict-aliasing" } */
4 int a, c, *d = &c, **e = &d, *g = &a;
5 static int ***b, **f = &d;
7 int
8 main ()
10 **f = 0;
11 int ****h = 0;
12 if (c)
14 *h = &e;
15 ***b = 0;
17 *e = g;
19 if (d != &a)
20 __builtin_abort ();
22 return 0;