diff options
-rw-r--r-- | bfd/ChangeLog | 10 | ||||
-rw-r--r-- | bfd/elf32-mips.c | 3 |
2 files changed, 9 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index aa2648c..eb9d5d2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2001-07-04 H.J. Lu <hjl@gnu.org> + + * bfd/elf32-mips.c (_bfd_mips_elf_final_write_processing): + Handle bfd_mach_mips4400, bfd_mach_mips4600 and + bfd_mach_mips5000. + 2001-07-03 Mark Elbrecht <snowball3@softhome.net> * bfd.c (bfd_get_sign_extend_vma): Support DJGPP COFF targets. @@ -5,10 +11,6 @@ * cofflink.c (_bfd_coff_link_input_bfd): Skip section symbols from sections being discarded. -2001-07-03 Nick Clifton <nickc@cambridge.redhat.com> - - * cofflink.c (_bfd_coff_link_input_bfd): - 2001-06-30 Alan Modra <amodra@bigpond.net.au> * elfcore.h (elf_core_file_p): Call bfd_section_from_phdr directly diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index 8f16486..baeb01f 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -2375,6 +2375,8 @@ _bfd_mips_elf_final_write_processing (abfd, linker) case bfd_mach_mips4000: case bfd_mach_mips4300: + case bfd_mach_mips4400: + case bfd_mach_mips4600: val = E_MIPS_ARCH_3; break; @@ -2394,6 +2396,7 @@ _bfd_mips_elf_final_write_processing (abfd, linker) val = E_MIPS_ARCH_3 | E_MIPS_MACH_4650; break; + case bfd_mach_mips5000: case bfd_mach_mips8000: case bfd_mach_mips10000: case bfd_mach_mips12000: |