Retro68/binutils/ld/testsuite/ld-x86-64/pr19784b.c
2017-04-10 13:32:00 +02:00

12 lines
159 B
C

int foo (int x) __attribute__ ((ifunc ("resolve_foo")));
static int foo_impl(int x)
{
return x;
}
void *resolve_foo (void)
{
return (void *) foo_impl;
}