1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-phiprop-details" } */ struct f { int i; }; int g(int i, int c, struct f *ff, int g) { int *t; if (c) t = &i; else t = &ff->i; return *t; } /* { dg-final { scan-tree-dump-times "Inserting PHI for result of load" 1 "phiprop" } } */ /* { dg-final { cleanup-tree-dump "phiprop" } } */