URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [lto/] [ipacp_0.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-lto-options {{ -O1 -flto -flto-partition=1to1 -fipa-cp -fipa-cp-clone}} } */ /* { dg-lto-do run } */ /* Test that clonning happens and we unify declarations of a from both units. */ const int a = 5; extern void clone_me (int *); int main(void) { int i; for (i=0;i<100;i++) clone_me ((int *)&a); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log