aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/attr-weakref-1_2.c
blob: 6f382f61e5e9c68d46788ab8bee82add3a81aef2 (plain)
1
2
3
4
5
6
7
extern void callmefirst();
static void callmealias() __attribute__((weakref ("callmefirst")));

c()
{
  callmealias();
}