mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
Change argument type passed to ifunc resolvers
* sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type in resolver call.
This commit is contained in:
parent
65284eb7a8
commit
9eee633b68
@ -1,3 +1,8 @@
|
||||
2017-08-31 Steve Ellcey <sellcey@cavium.com>
|
||||
|
||||
* sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type
|
||||
in resolver call.
|
||||
|
||||
2017-08-31 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
* include/libc-symbols.h (internal_function): Remove.
|
||||
|
@ -31,7 +31,7 @@ static inline ElfW(Addr)
|
||||
__attribute ((always_inline))
|
||||
elf_ifunc_invoke (ElfW(Addr) addr)
|
||||
{
|
||||
return ((ElfW(Addr) (*) (unsigned long int)) (addr)) (GLRO(dl_hwcap));
|
||||
return ((ElfW(Addr) (*) (uint64_t)) (addr)) (GLRO(dl_hwcap));
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
Loading…
Reference in New Issue
Block a user