summaryrefslogtreecommitdiff
path: root/bfd/elf32-mips.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2002-02-06 21:34:17 +0000
committerH.J. Lu <hjl@lucon.org>2002-02-06 21:34:17 +0000
commit2d02d5c14af3c06d247a63a45dc5cab33dd6c93d (patch)
tree7e2d80a5787c978a3fa501313e9a7f84c9702d76 /bfd/elf32-mips.c
parent94454c961210907bf2d81a887dba5f78ff48c386 (diff)
downloadgdb-2d02d5c14af3c06d247a63a45dc5cab33dd6c93d.tar.gz
2002-02-06 H.J. Lu (hjl@gnu.org)
* elf32-mips.c (_bfd_mips_elf_merge_private_bfd_data): Update the mach and ISA fields if necessary.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r--bfd/elf32-mips.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index a84112ef8dd..479ab75defc 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -3169,8 +3169,21 @@ _bfd_mips_elf_merge_private_bfd_data (ibfd, obfd)
bfd_archive_filename (ibfd), new_isa, old_isa);
ok = false;
}
- }
+ else
+ {
+ /* Do we need to update the mach field? */
+ if (old_mach == 0 && new_mach != 0)
+ elf_elfheader (obfd)->e_flags |= new_mach;
+ /* Do we need to update the ISA field? */
+ if (new_isa > old_isa)
+ {
+ elf_elfheader (obfd)->e_flags &= ~EF_MIPS_ARCH;
+ elf_elfheader (obfd)->e_flags
+ |= new_flags & EF_MIPS_ARCH;
+ }
+ }
+ }
else
{
(*_bfd_error_handler)