blob: 61184fcf609eedccac4ec10c50fb0241d4b2e5f5 [file] [log] [blame]
static void my_func() {}
__attribute__((__used__))
static void (*resolve_func(void))(void) {
return my_func;
}
void func_changed() __attribute__((ifunc("resolve_func")));
void func_removed() __attribute__((ifunc("resolve_func")));