aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/ipacp_0.c
blob: 097c1c2538f78506d83d927ae48a7c8409113cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { 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;
}