Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr100923.c
blob05a6341fea333b5842bf5bbcee65ba8b0cbca6fb
1 /* { dg-do run } */
3 int a = 1, b, c, *d = &a, *e = &a, f;
4 void g(int h) {}
5 void k(int *l)
7 int ***j;
8 if (c)
10 *j = &l;
11 ***j;
13 g(*l);
14 *e = f;
15 if (*l)
17 int i = b / a;
18 a = i;
21 int main()
23 k(d);
24 return 0;