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.19-316-g48332d8


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  48332d822090e41253692053a00dfe224d3ebec0 (commit)
      from  e5e0d9a4f632735cf3bb440eecb5caee5eea44c1 (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=48332d822090e41253692053a00dfe224d3ebec0

commit 48332d822090e41253692053a00dfe224d3ebec0
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Apr 25 09:33:41 2014 -0700

    Replace __int128 with __int128_t in bits/link.h
    
    __int128 was added in GCC 4.6 and __int128_t was added before x86-64
    was supported.  This patch replaces __int128 with __int128_t so that
    the installed bits/link.h can be used with older GCC.
    
    	* sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
    	with __int128_t.
    	(La_x86_64_retval): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 0909d3b..3ab4d4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
+	with __int128_t.
+	(La_x86_64_retval): Likewise.
+
 2014-04-24  Ian Bolton  <ian.bolton@arm.com>
 
 	* sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
diff --git a/sysdeps/x86/bits/link.h b/sysdeps/x86/bits/link.h
index 82522e5..ebc5989 100644
--- a/sysdeps/x86/bits/link.h
+++ b/sysdeps/x86/bits/link.h
@@ -94,7 +94,7 @@ typedef struct La_x86_64_regs
   La_x86_64_xmm lr_xmm[8];
   La_x86_64_vector lr_vector[8];
 #ifndef __ILP32__
-  __int128 lr_bnd[4];
+  __int128_t lr_bnd[4];
 #endif
 } La_x86_64_regs;
 
@@ -110,8 +110,8 @@ typedef struct La_x86_64_retval
   La_x86_64_vector lrv_vector0;
   La_x86_64_vector lrv_vector1;
 #ifndef __ILP32__
-  __int128 lrv_bnd0;
-  __int128 lrv_bnd1;
+  __int128_t lrv_bnd0;
+  __int128_t lrv_bnd1;
 #endif
 } La_x86_64_retval;
 

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

Summary of changes:
 ChangeLog               |    6 ++++++
 sysdeps/x86/bits/link.h |    6 +++---
 2 files changed, 9 insertions(+), 3 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]