Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21463.c
blobed0829a038c48d9b7a223ebafb80fc6a43dcef26
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-phiprop-details" } */
4 struct f
6 int i;
7 };
9 int g(int i, int c, struct f *ff, int g)
11 int *t;
12 if (c)
13 t = &i;
14 else
15 t = &ff->i;
16 return *t;
19 /* { dg-final { scan-tree-dump-times "Inserting PHI for result of load" 1 "phiprop" } } */