1 /* Test STT_GNU_IFUNC symbols:
3 1. Direct function call.
5 3. Visibility without override.
12 int ret_foo_protected
;
14 extern int foo (void);
15 extern int foo_protected (void);
18 typedef int (*foo_p
) (void);
23 /* Address-significant access to protected symbols is not supported in
24 position-dependent mode on several architectures because GCC
25 generates relocations that assume that the address is local to the
28 foo_p foo_procted_ptr
= foo_protected
;
31 extern foo_p
get_foo_p (void);
32 extern foo_p
get_foo_hidden_p (void);
33 extern foo_p
get_foo_protected_p (void);
44 if ((*foo_ptr
) () != -1)
48 if (foo_procted_ptr
!= foo_protected
)
51 if (foo_protected () != 0)
54 if ((*foo_procted_ptr
) () != 0)
61 if (ret_foo
!= -1 || (*p
) () != ret_foo
)
64 p
= get_foo_hidden_p ();
65 if (ret_foo_hidden
!= 1 || (*p
) () != ret_foo_hidden
)
68 p
= get_foo_protected_p ();
70 if (p
!= foo_protected
)
73 if (ret_foo_protected
!= 0 || (*p
) () != ret_foo_protected
)