From: Thiemo Seufer Date: Tue, 14 May 2002 23:34:00 +0000 (+0000) Subject: * mips-dis.c (is_newabi): EABI is not a NewABI. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=563773fe03c6530810d02f664dcdae5824a35a6b;p=binutils-gdb.git * mips-dis.c (is_newabi): EABI is not a NewABI. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 4ab4b04c0f8..1d5247d1f5f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2002-05-15 Thiemo Seufer + + * mips-dis.c (is_newabi): EABI is not a NewABI. + 2002-05-13 Jason Thorpe * configure.in (shle-*-*elf*): Include sh64 support. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 9931a1882e1..661c179cbea 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -407,10 +407,8 @@ is_newabi (header) if (header->e_ident[EI_CLASS] == ELFCLASS64) return 1; - /* If a 32-bit ELF file, N32, EABI32, and EABI64 are new-style ABIs. */ - if ((header->e_flags & EF_MIPS_ABI2) != 0 - || (header->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI32 - || (header->e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64) + /* If a 32-bit ELF file, n32 is a new-style ABI. */ + if ((header->e_flags & EF_MIPS_ABI2) != 0) return 1; return 0;