* elf32-arm.h (elf32_arm_relocate_section): Fix operator
authorAndreas Schwab <schwab@linux-m68k.org>
Fri, 14 May 1999 02:02:26 +0000 (02:02 +0000)
committerAndreas Schwab <schwab@linux-m68k.org>
Fri, 14 May 1999 02:02:26 +0000 (02:02 +0000)
  precedence between bit-and and comparison.

bfd/ChangeLog
bfd/elf32-arm.h

index 8f636659e88b2094cc09f6abff84c11ccd4bc167..5f86ff0c915db99434110c8369d37fb623df85c2 100644 (file)
@@ -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
index d4e97d6b9bf26ef4278d6009deb09d8ab9559bef..4e06a7e690154d62007ee82bf6612627424455f7 100644 (file)
@@ -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)
                      )
This page took 0.030543 seconds and 4 git commands to generate.