Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21463.c
blobf490bf61e5aef8f746cf6293fea0e63a8acea92a
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-phiprop" } */
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-not "\\*t" "phiprop" } } */
20 /* { dg-final { cleanup-tree-dump "phiprop" } } */