diff options
author | DJ Delorie <dj@redhat.com> | 2008-06-12 19:49:48 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2008-06-12 19:49:48 +0000 |
commit | ff7eeb894eb621be6933ce414508ed7eb38ea763 (patch) | |
tree | 210fbc3c11b5476015896d998e74b142a1bb037a /binutils | |
parent | 310213e869a9d10697dea5013e6492ccf60322e3 (diff) | |
download | gdb-ff7eeb894eb621be6933ce414508ed7eb38ea763.zip gdb-ff7eeb894eb621be6933ce414508ed7eb38ea763.tar.gz gdb-ff7eeb894eb621be6933ce414508ed7eb38ea763.tar.bz2 |
* common.h (EM_M32C_NEW): Rename to EM_M32C.
(EM_M32C): Rename to EM_M32C_OLD.
* elf32-m32c.c (ELF_MACHINE_ALT1): Define as EM_M32C_OLD.
* readelf.c (guess_is_rela): Add EM_M32C_OLD.
(dump_relocations): Likewise.
(process_section_headers): Likewise.
(is_32bit_abs_reloc): Likewise.
(is_16bit_abs_reloc): Likewise.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 8 | ||||
-rw-r--r-- | binutils/readelf.c | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4ba9c0a..2c3aa5c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,11 @@ +2008-06-12 DJ Delorie <dj@redhat.com> + + * readelf.c (guess_is_rela): Add EM_M32C_OLD. + (dump_relocations): Likewise. + (process_section_headers): Likewise. + (is_32bit_abs_reloc): Likewise. + (is_16bit_abs_reloc): Likewise. + 2008-06-12 Nick Clifton <nickc@redhat.com> PR binutils/6483 diff --git a/binutils/readelf.c b/binutils/readelf.c index 3498b30..953350a 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -717,6 +717,7 @@ guess_is_rela (unsigned int e_machine) case EM_IP2K: case EM_IP2K_OLD: case EM_IQ2000: + case EM_M32C_OLD: case EM_M32C: case EM_M32R: case EM_MCORE: @@ -1280,6 +1281,7 @@ dump_relocations (FILE *file, rtype = elf_xtensa_reloc_type (type); break; + case EM_M32C_OLD: case EM_M32C: rtype = elf_m32c_reloc_type (type); break; @@ -1914,6 +1916,7 @@ get_machine_name (unsigned e_machine) case EM_IQ2000: return "Vitesse IQ2000"; case EM_XTENSA_OLD: case EM_XTENSA: return "Tensilica Xtensa Processor"; + case EM_M32C_OLD: case EM_M32C: return "Renesas M32c"; case EM_MT: return "Morpho Techologies MT processor"; case EM_BLACKFIN: return "Analog Devices Blackfin"; @@ -4300,6 +4303,7 @@ process_section_headers (FILE *file) } break; + case EM_M32C_OLD: case EM_M32C: switch (elf_header.e_flags & EF_M32C_CPU_MASK) { @@ -8152,6 +8156,7 @@ is_32bit_abs_reloc (unsigned int reloc_type) return reloc_type == 2; /* R_IP2K_32. */ case EM_IQ2000: return reloc_type == 2; /* R_IQ2000_32. */ + case EM_M32C_OLD: case EM_M32C: return reloc_type == 3; /* R_M32C_32. */ case EM_M32R: @@ -8326,6 +8331,7 @@ is_16bit_abs_reloc (unsigned int reloc_type) case EM_IP2K_OLD: case EM_IP2K: return reloc_type == 1; /* R_IP2K_16. */ + case EM_M32C_OLD: case EM_M32C: return reloc_type == 1; /* R_M32C_16 */ case EM_MSP430_OLD: |