* mips-dis.c (is_newabi): EABI is not a NewABI.
authorThiemo Seufer <ths@networkno.de>
Tue, 14 May 2002 23:34:00 +0000 (23:34 +0000)
committerThiemo Seufer <ths@networkno.de>
Tue, 14 May 2002 23:34:00 +0000 (23:34 +0000)
opcodes/ChangeLog
opcodes/mips-dis.c

index 4ab4b04c0f84e559cd809edd452f3d070114f9ea..1d5247d1f5fb4d9327ebe4bb61f4d8cbd46c6ce2 100644 (file)
@@ -1,3 +1,7 @@
+2002-05-15  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+       * mips-dis.c (is_newabi): EABI is not a NewABI.
+
 2002-05-13  Jason Thorpe  <thorpej@wasabisystems.com>
 
        * configure.in (shle-*-*elf*): Include sh64 support.
index 9931a1882e1bf86a34493b723a82cd7e2d096d5e..661c179cbea70794828000c9301689869c9cbed5 100644 (file)
@@ -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;
This page took 0.038707 seconds and 4 git commands to generate.