view gcc/testsuite/gcc.dg/lto/ipacp_0.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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;
}