diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/readelf.c | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9e49570..563ee5c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2005-12-16 Nathan Sidwell <nathan@codesourcery.com> + + Second part of ms1 to mt renaming. + * readelf.c (guess_is_rela): Use EM_MT. + (dump_relocations, get_machine_name): Adjust. + 2005-12-12 Nathan Sidwell <nathan@codesourcery.com> * Makefile.am: Replace ms1 files with mt files. diff --git a/binutils/readelf.c b/binutils/readelf.c index 82efa69..1110d3b 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -609,7 +609,7 @@ guess_is_rela (unsigned long e_machine) case EM_XTENSA_OLD: case EM_M32R: case EM_M32C: - case EM_MS1: + case EM_MT: case EM_BLACKFIN: return TRUE; @@ -1123,8 +1123,8 @@ dump_relocations (FILE *file, rtype = elf_m32c_reloc_type (type); break; - case EM_MS1: - rtype = elf_ms1_reloc_type (type); + case EM_MT: + rtype = elf_mt_reloc_type (type); break; case EM_BLACKFIN: @@ -1687,7 +1687,7 @@ get_machine_name (unsigned e_machine) case EM_XTENSA_OLD: case EM_XTENSA: return "Tensilica Xtensa Processor"; case EM_M32C: return "Renesas M32c"; - case EM_MS1: return "Morpho Techologies MS1 processor"; + case EM_MT: return "Morpho Techologies MT processor"; default: snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_machine); return buff; |