binutils/ChangeLog:
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.
This commit is contained in:
parent
e99dc82053
commit
d32e5c54ad
6 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue