[PATCH, LD, AArch64] Fix ifunc testisms
[deliverable/binutils-gdb.git] / ld / testsuite / ld-ifunc / pr23169c.c
CommitLineData
4ec09950
L
1static int
2ifunc (void)
3{
4 return 0xbadbeef;
5}
6
7void func(void) __attribute__((ifunc("resolve_func")));
8
9static void *
10resolve_func (void)
11{
12 return ifunc;
13}
This page took 0.052695 seconds and 4 git commands to generate.