Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr71987.c
blob87d59383af42d4d6070774cb07e8993d78a1000a
1 /* PR tree-optimization/71987 */
3 int a, b, *c, *d;
5 short fn1 (int p1)
7 return a ? p1 : a;
10 void fn2 ()
12 int e, *f = &e;
13 b = fn1 (d != &e);
14 c = f;
17 int main ()
19 fn2 ();
20 return 0;