URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [ssa-pre-7.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-fre-stats" } */ int foo (int *array) { if (array[1] != 0) return array[1]; return 0; } /* We should eliminate one address calculation, and one load. */ /* { dg-final { scan-tree-dump-times "Eliminated: 2" 1 "fre"} } */ /* { dg-final { cleanup-tree-dump "fre" } } */
Go to most recent revision | Compare with Previous | Blame | View Log