binutils/ChangeLog:
authorAndrew Pinski <apinski@cavium.com>
Thu, 6 Feb 2014 19:26:26 +0000 (11:26 -0800)
committerAndrew Pinski <apinski@cavium.com>
Thu, 6 Feb 2014 19:26:26 +0000 (11:26 -0800)
2014-02-06  Andrew Pinski  <apinski@cavium.com>

* readelf.c  (get_machine_flags): Handle E_MIPS_MACH_OCTEON3 case.

elfcpp/ChangeLog:
2014-02-06  Andrew Pinski  <apinski@cavium.com>

* mips.h (E_MIPS_MACH_OCTEON3): New enum constant.

include/elf/ChangeLog:
2014-02-06  Andrew Pinski  <apinski@cavium.com>

* mips.h (E_MIPS_MACH_OCTEON3): New machine flag.

binutils/ChangeLog
binutils/readelf.c
elfcpp/ChangeLog
elfcpp/mips.h
include/elf/ChangeLog
include/elf/mips.h

index 6758413..dd24cd7 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-06  Andrew Pinski  <apinski@cavium.com>
+
+       * readelf.c  (get_machine_flags): Handle E_MIPS_MACH_OCTEON3 case.
+
 2014-02-06  Cary Coutant  <ccoutant@google.com>
 
        PR binutils/16444
index 453aeb7..150e84f 100644 (file)
@@ -2808,6 +2808,7 @@ get_machine_flags (unsigned e_flags, unsigned e_machine)
            case E_MIPS_MACH_LS3A: strcat (buf, ", loongson-3a"); break;
            case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
            case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
+           case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break;
            case E_MIPS_MACH_XLR:  strcat (buf, ", xlr"); break;
            case 0:
            /* We simply ignore the field in this case to avoid confusion:
index 2399da6..e6ec60d 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-06  Andrew Pinski  <apinski@cavium.com>
+
+       * mips.h (E_MIPS_MACH_OCTEON3): New enum constant.
+
 2013-11-17  H.J. Lu  <hongjiu.lu@intel.com>
 
        * x86_64.h (R_X86_64_PC32_BND): New.
index 8c2d8f4..db65998 100644 (file)
@@ -164,6 +164,7 @@ enum
   E_MIPS_MACH_OCTEON = 0x008b0000,
   E_MIPS_MACH_XLR = 0x008c0000,
   E_MIPS_MACH_OCTEON2 = 0x008d0000,
+  E_MIPS_MACH_OCTEON3 = 0x008e0000,
   E_MIPS_MACH_5400 = 0x00910000,
   E_MIPS_MACH_5500 = 0x00980000,
   E_MIPS_MACH_9000 = 0x00990000,
index 6d144b4..bd18469 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-06  Andrew Pinski  <apinski@cavium.com>
+
+       * mips.h (E_MIPS_MACH_OCTEON3): New machine flag.
+
 2014-02-03  Sandra Loosemore  <sandra@codesourcery.com>
 
        * nios2.h (R_NIOS2_GOT_LO, R_NIOS2_GOT_HA): New.
index 2c5a9a6..7a62875 100644 (file)
@@ -275,6 +275,7 @@ END_RELOC_NUMBERS (R_MIPS_maxext)
 #define E_MIPS_MACH_OCTEON     0x008b0000
 #define E_MIPS_MACH_XLR        0x008c0000
 #define E_MIPS_MACH_OCTEON2    0x008d0000
+#define E_MIPS_MACH_OCTEON3    0x008e0000
 #define E_MIPS_MACH_5400       0x00910000
 #define E_MIPS_MACH_5900       0x00920000
 #define E_MIPS_MACH_5500       0x00980000