(tc_gen_reloc): Fix handling of GOTPC relocs.
authorUlrich Drepper <drepper@redhat.com>
Sun, 13 Jun 1999 06:39:21 +0000 (06:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 13 Jun 1999 06:39:21 +0000 (06:39 +0000)
gas/ChangeLog
gas/config/tc-arm.c

index 857028185e376fc2312ced11387f8c9f0a945cd2..cbcb93d7fd1ee50fcea88b03e5a76252187fdf4f 100644 (file)
@@ -1,3 +1,7 @@
+1999-06-12  Philip Blundell  <philb@gnu.org>
+
+       * config/tc-arm.c (tc_gen_reloc): Fix handling of GOTPC relocs.
+
 1999-06-13  Ian Lance Taylor  <ian@zembu.com>
 
        * write.c (adjust_reloc_syms): Rather than never reducing reloc
index fa84ca03dd729e9e172f52f83aa591ca988a44c2..eb39c78d0dd08446d30ef3a1093be5314297d0c5 100644 (file)
@@ -5713,7 +5713,10 @@ tc_gen_reloc (section, fixp)
  if (code == BFD_RELOC_32_PCREL
      && GOT_symbol
      && fixp->fx_addsy == GOT_symbol)
-   code = BFD_RELOC_ARM_GOTPC;
+   {
+     code = BFD_RELOC_ARM_GOTPC;
+     reloc->addend = fixp->fx_offset = reloc->address;
+   }
 #endif
    
   reloc->howto = bfd_reloc_type_lookup (stdoutput, code);