mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
* elf32-arm.h (elf32_arm_relocate_section): Fix operator
precedence between bit-and and comparison.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Fri May 14 10:59:55 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
|
||||||
|
|
||||||
|
* elf32-arm.h (elf32_arm_relocate_section): Fix operator
|
||||||
|
precedence between bit-and and comparison.
|
||||||
|
|
||||||
Thu May 13 09:45:23 1999 Joel Sherrill (joel@OARcorp.com)
|
Thu May 13 09:45:23 1999 Joel Sherrill (joel@OARcorp.com)
|
||||||
|
|
||||||
* config.bfd (i[3456]86*-*-rtems*, m68k*-*-rtems*): Added to
|
* config.bfd (i[3456]86*-*-rtems*, m68k*-*-rtems*): Added to
|
||||||
|
@ -1569,7 +1569,7 @@ elf32_arm_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
if (info->shared
|
if (info->shared
|
||||||
&& (
|
&& (
|
||||||
(!info->symbolic && h->dynindx != -1)
|
(!info->symbolic && h->dynindx != -1)
|
||||||
|| (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR == 0)
|
|| (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0
|
||||||
)
|
)
|
||||||
&& ((input_section->flags & SEC_ALLOC) != 0)
|
&& ((input_section->flags & SEC_ALLOC) != 0)
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user