Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-pre-17.c
blob09313716598e24c0f005f740181acfb6fb9286ec
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
4 typedef union {
5 int i;
6 float f;
7 } U;
9 int foo(U *u, int b, int i)
11 u->i = 0;
12 if (b)
13 u->i = i;
14 return u->i;
17 /* { dg-final { scan-tree-dump "Eliminated: 1" "pre" } } */