Properly handle common symbol and weak function
[deliverable/binutils-gdb.git] / ld / testsuite / ld-ifunc / ifunc-common-1b.c
CommitLineData
37a9e49a
L
1void alt (void) { }
2
3void foo (void);
4void * foo_ifunc (void) __asm__ ("foo");
5__asm__(".type foo, %gnu_indirect_function");
6__asm__(".weak foo");
7
8void *
9foo_ifunc (void)
10{
11 return alt;
12}
This page took 0.023997 seconds and 4 git commands to generate.