URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [pr21463.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-phiprop" } */ 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-not "\\*t" "phiprop" } } */ /* { dg-final { cleanup-tree-dump "phiprop" } } */