URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [ipa/] [ipa-sra-5.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fipa-sra -fdump-tree-eipa_sra-details" } */ static int * __attribute__((noinline,used)) ox (int *i, int *j) { return i; } int a; int *caller (void) { int b = 10; return ox (&a, &b); } /* { dg-final { scan-tree-dump-times "base: j, remove_param" 0 "eipa_sra" } } */ /* { dg-final { cleanup-tree-dump "eipa_sra" } } */