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.17-103-g0e8529e


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  0e8529e94f4e2e457dc145c1c4aa4736a7c81ea5 (commit)
      from  740b3dbee8ef034019b240dc4838b39dfa0c01e2 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0e8529e94f4e2e457dc145c1c4aa4736a7c81ea5

commit 0e8529e94f4e2e457dc145c1c4aa4736a7c81ea5
Author: Steve Ellcey <sellcey@mips.com>
Date:   Fri Jan 11 11:20:05 2013 -0800

    2013-01-11  Steve Ellcey  <sellcey@mips.com>
    
    	* elf/elf.h (EF_MIPS_ARCH_32): Fix value.
    	(EF_MIPS_ARCH_64): Fix value.
    	(EF_MIPS_ARCH_32R2): New.
    	(EF_MIPS_ARCH_64R2): New.

diff --git a/ChangeLog b/ChangeLog
index dc9ea95..3feff6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-01-11  Steve Ellcey  <sellcey@mips.com>
+
+	* elf/elf.h (EF_MIPS_ARCH_32): Fix value.
+	(EF_MIPS_ARCH_64): Fix value.
+	(EF_MIPS_ARCH_32R2): New.
+	(EF_MIPS_ARCH_64R2): New.
+
 2013-01-11  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* Makeconfig (+link-pie-before-libc): New.
diff --git a/elf/elf.h b/elf/elf.h
index 0731348..9a31373 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -1388,8 +1388,10 @@ typedef struct
 #define EF_MIPS_ARCH_3		0x20000000 /* -mips3 code.  */
 #define EF_MIPS_ARCH_4		0x30000000 /* -mips4 code.  */
 #define EF_MIPS_ARCH_5		0x40000000 /* -mips5 code.  */
-#define EF_MIPS_ARCH_32		0x60000000 /* MIPS32 code.  */
-#define EF_MIPS_ARCH_64		0x70000000 /* MIPS64 code.  */
+#define EF_MIPS_ARCH_32		0x50000000 /* MIPS32 code.  */
+#define EF_MIPS_ARCH_64		0x60000000 /* MIPS64 code.  */
+#define EF_MIPS_ARCH_32R2	0x70000000 /* MIPS32r2 code.  */
+#define EF_MIPS_ARCH_64R2	0x80000000 /* MIPS64r2 code.  */
 
 /* The following are unofficial names and should not be used.  */
 

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

Summary of changes:
 ChangeLog |    7 +++++++
 elf/elf.h |    6 ++++--
 2 files changed, 11 insertions(+), 2 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]