OSDN Git Service

* config/tc-ppc.c (ppc_elf_validate_fix): It's OK to have
authorGeoffrey Keating <geoffk@geoffk.org>
Tue, 31 Jul 2001 19:24:57 +0000 (19:24 +0000)
committerGeoffrey Keating <geoffk@geoffk.org>
Tue, 31 Jul 2001 19:24:57 +0000 (19:24 +0000)
any kind of relocation against a not-loaded section.

gas/ChangeLog
gas/config/tc-ppc.c

index a7157cc..ca719da 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-31  Geoffrey Keating  <geoffk@redhat.com>
+
+       * config/tc-ppc.c (ppc_elf_validate_fix): It's OK to have
+       any kind of relocation against a not-loaded section.
+
 2001-07-30  Alan Modra  <amodra@bigpond.net.au>
 
        * config/obj-elf.c (obj_elf_symver): Temporarily modify lex_type
index 621b6db..0710a67 100644 (file)
@@ -1576,11 +1576,11 @@ ppc_elf_validate_fix (fixp, seg)
          && fixp->fx_r_type != BFD_RELOC_LO16_BASEREL
          && fixp->fx_r_type != BFD_RELOC_HI16_BASEREL
          && fixp->fx_r_type != BFD_RELOC_HI16_S_BASEREL
+         && (seg->flags & SEC_LOAD) != 0
          && strcmp (segment_name (seg), ".got2") != 0
          && strcmp (segment_name (seg), ".dtors") != 0
          && strcmp (segment_name (seg), ".ctors") != 0
          && strcmp (segment_name (seg), ".fixup") != 0
-         && strcmp (segment_name (seg), ".stab") != 0
          && strcmp (segment_name (seg), ".gcc_except_table") != 0
          && strcmp (segment_name (seg), ".eh_frame") != 0
          && strcmp (segment_name (seg), ".ex_shared") != 0)