]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* elf64-alpha.c (elf64_alpha_relocate_section): Do not
authorRichard Henderson <rth@redhat.com>
Tue, 11 Sep 2001 18:21:11 +0000 (18:21 +0000)
committerRichard Henderson <rth@redhat.com>
Tue, 11 Sep 2001 18:21:11 +0000 (18:21 +0000)
        apply HINT relocations against dynamic symbols.

bfd/ChangeLog
bfd/elf64-alpha.c

index 4285f6f058b300f5c3eae105d213a15c6e3bdfd2..944790f8f6c6ea235c93df91b303c668de5867be 100644 (file)
@@ -1,7 +1,11 @@
+2001-09-11  Richard Henderson  <rth@redhat.com>
+
+       * elf64-alpha.c (elf64_alpha_relocate_section): Do not
+       apply HINT relocations against dynamic symbols.
+
 2001-09-11  H.J. Lu  <hjl@gnu.org>
 
-       * inker.c (link_action): Change COMMON_ROW\defw from CREF to
-       COM.
+       * linker.c (link_action): Change COMMON_ROW\defw from CREF to COM.
 
 2001-09-09  Richard Henderson  <rth@redhat.com>
 
index 8efd4ee2cf03879ba9602a356cd1170e885bb7a3..e345b6d9b0fac5511ae7078861ed6c7cf0d6f1a7 100644 (file)
@@ -3462,8 +3462,17 @@ elf64_alpha_relocate_section (output_bfd, info, input_bfd, input_section,
                        + ((relocation >> 15) & 1));
          goto default_reloc;
 
-       case R_ALPHA_BRADDR:
        case R_ALPHA_HINT:
+         /* A call to a dynamic symbol is definitely out of range of
+            the 16-bit displacement.  Don't bother writing anything.  */
+         if (h && alpha_elf_dynamic_symbol_p (&h->root, info))
+           {
+             r = bfd_reloc_ok;
+             break;
+           }
+         /* FALLTHRU */
+
+       case R_ALPHA_BRADDR:
          /* The regular PC-relative stuff measures from the start of
             the instruction rather than the end.  */
          addend -= 4;