From: Thiemo Seufer Date: Wed, 7 Aug 2002 04:37:24 +0000 (+0000) Subject: * elfxx-mips.c (ABI_64_P): Remove superfluous check. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=141ff9705ac750fd5085fe7c5df65612653a09b6;p=binutils-gdb.git * elfxx-mips.c (ABI_64_P): Remove superfluous check. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index cd1c143f61b..035c1a4bb95 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2002-08-07 Thiemo Seufer + + * elfxx-mips.c (ABI_64_P): Remove superfluous check. + 2002-08-07 Thiemo Seufer * elf32-mips.c (mips_reloc_map): Fix typo. diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 78b331053e3..a44ed33c1cd 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -375,7 +375,7 @@ static bfd *reldyn_sorting_bfd; /* Nonzero if ABFD is using the N64 ABI. */ #define ABI_64_P(abfd) \ - ((get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64) != 0) + (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64) /* Nonzero if ABFD is using NewABI conventions. */ #define NEWABI_P(abfd) (ABI_N32_P (abfd) || ABI_64_P (abfd))