From: Andrew Cagney Date: Sat, 19 Aug 2000 05:32:23 +0000 (+0000) Subject: Check arches->gdbarch and not current_gdbarch when looking for a match. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9103eae08213b08c59310b0b4189941c55d6ed24;p=deliverable%2Fbinutils-gdb.git Check arches->gdbarch and not current_gdbarch when looking for a match. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fd929792a6..d4b4a6b4fb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2000-08-18 Andrew Cagney + + * mips-tdep.c (mips_gdbarch_init): Check arches->gdbarch and not + current_gdbarch for a match. + 2000-08-18 J.T. Conklin * MAINTAINERS: Add myself as dcache.c maintainer. diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 4139bbc2a0..20d5446b47 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -3884,9 +3884,9 @@ mips_gdbarch_init (struct gdbarch_info info, { /* MIPS needs to be pedantic about which ABI the object is using. */ - if (gdbarch_tdep (current_gdbarch)->elf_flags != elf_flags) + if (gdbarch_tdep (arches->gdbarch)->elf_flags != elf_flags) continue; - if (gdbarch_tdep (current_gdbarch)->mips_abi != mips_abi) + if (gdbarch_tdep (arches->gdbarch)->mips_abi != mips_abi) continue; return arches->gdbarch; }