mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
18 lines
234 B
C
18 lines
234 B
C
|
void foo() __attribute__((ifunc("resolve_foo")));
|
||
|
|
||
|
static void foo_impl() {}
|
||
|
extern void zoo(void);
|
||
|
void (*pz)(void) = zoo;
|
||
|
|
||
|
void test()
|
||
|
{
|
||
|
void (*pg)(void) = foo;
|
||
|
pg();
|
||
|
}
|
||
|
|
||
|
static void* resolve_foo()
|
||
|
{
|
||
|
pz();
|
||
|
return foo_impl;
|
||
|
}
|