This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26-251-g9eee633


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  9eee633b68649c94b2404f65d5c9a00c3ed1f068 (commit)
      from  65284eb7a80fad685e1fc1898fc212ec87ed03fd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=9eee633b68649c94b2404f65d5c9a00c3ed1f068

commit 9eee633b68649c94b2404f65d5c9a00c3ed1f068
Author: Steve Ellcey <sellcey@caviumnetworks.com>
Date:   Thu Aug 31 10:34:55 2017 -0700

    Change  argument type passed to ifunc resolvers
    
    	* sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type
    	in resolver call.

diff --git a/ChangeLog b/ChangeLog
index 98701d9..e0473dc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/sysdeps/aarch64/dl-irel.h b/sysdeps/aarch64/dl-irel.h
index 4a80275..a794c82 100644
--- a/sysdeps/aarch64/dl-irel.h
+++ b/sysdeps/aarch64/dl-irel.h
@@ -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

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                 |    5 +++++
 sysdeps/aarch64/dl-irel.h |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]