diff options
author | Nick Clifton <nickc@redhat.com> | 2001-10-30 15:20:14 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-10-30 15:20:14 +0000 |
commit | 3c3bdf30e42268e6193693acd1dc66d2d1792536 (patch) | |
tree | 8f6b2752d885c3e71d0bef5717e981faac396928 /binutils | |
parent | f5ffc9190a633d0f8eb1632a64a28eda75206b55 (diff) | |
download | gdb-3c3bdf30e42268e6193693acd1dc66d2d1792536.zip gdb-3c3bdf30e42268e6193693acd1dc66d2d1792536.tar.gz gdb-3c3bdf30e42268e6193693acd1dc66d2d1792536.tar.bz2 |
Add MMIX support
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 62da647..f9437d5 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,11 @@ +2001-10-30 Hans-Peter Nilsson <hp@bitrange.com> + + * readelf.c: Include elf/mmix.h. + (guess_is_rela): MMIX is RELA. + (dump_relocations): Handle MMIX relocations. + * Makefile.am: Regenerate dependencies. + * Makefile.in: Regenerate. + 2001-10-13 Nick Clifton <nickc@cambridge.redhat.com> * readelf.c (parse_args): Handle multiple options to the -w diff --git a/binutils/readelf.c b/binutils/readelf.c index 3bed274..675912f 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -68,6 +68,7 @@ #include "elf/arc.h" #include "elf/fr30.h" #include "elf/mcore.h" +#include "elf/mmix.h" #include "elf/i960.h" #include "elf/pj.h" #include "elf/avr.h" @@ -587,6 +588,7 @@ guess_is_rela (e_machine) case EM_X86_64: case EM_S390: case EM_S390_OLD: + case EM_MMIX: return TRUE; case EM_MMA: @@ -941,6 +943,10 @@ dump_relocations (file, rel_offset, rel_size, symtab, nsyms, strtab, is_rela) rtype = elf_mcore_reloc_type (type); break; + case EM_MMIX: + rtype = elf_mmix_reloc_type (type); + break; + case EM_PPC: case EM_PPC64: rtype = elf_ppc_reloc_type (type); |