* elf32-arm.h (elf32_arm_relocate_section): Fix operator
precedence between bit-and and comparison.
This commit is contained in:
parent
19b341776d
commit
97eaf9de67
2 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
|
||||
* 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
|
||||
&& (
|
||||
(!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)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue