diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | include/libc-symbols.h | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> + + * include/libc-symbols.h: [!defined HAVE_GCC_IFUNC] (__ifunc): + Change the return type of the ifunc resolver to match the return + type of the target function. + 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org> * sysdeps/unix/sysv/linux/x86_64/syscalls.list (pread64): Remove. diff --git a/include/libc-symbols.h b/include/libc-symbols.h index 42fc41a..3617baa 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -831,7 +831,7 @@ for linking") # define __ifunc(type_name, name, expr, arg, init) \ extern __typeof (type_name) name; \ - void *name##_ifunc (arg) __asm__ (#name); \ + __typeof (type_name) *name##_ifunc (arg) __asm__ (#name); \ __ifunc_resolver (type_name, name, expr, arg, init,) \ __asm__ (".type " #name ", %gnu_indirect_function"); |