ld: Disable ifunc tests on Solaris
[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.103782 seconds and 4 git commands to generate.