Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr58131.c
blob3f68d4c5286e3aa95b460da7b777538f643aa2a6
1 /* PR tree-optimization/58131 */
2 /* { dg-do compile } */
4 short a;
5 int b, c, d[1][4][2];
7 void
8 foo (void)
10 int *e;
11 for (b = 1; ; b--)
13 if (*e)
14 break;
15 for (c = 2; c >= 0; c--)
17 *e |= d[0][3][b] != a;
18 int *f = &d[0][3][b];
19 *f = 0;