PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr57321.c
blob79b3d4d17740b7a563dcda21e7c327f3a176cb07
1 /* PR tree-optimization/57321 */
3 int a = 1, *b, **c;
5 static int
6 foo (int *p)
8 if (*p == a)
10 int *i[7][5] = { { 0 } };
11 int **j[1][1];
12 j[0][0] = &i[0][0];
13 *b = &p != c;
15 return 0;
18 int
19 main ()
21 int i = 0;
22 foo (&i);
23 return 0;