From e138127ab29a47f6d129796faf39746d15e9890d Mon Sep 17 00:00:00 2001 From: Geoffrey Keating Date: Tue, 31 Jul 2001 19:24:57 +0000 Subject: * config/tc-ppc.c (ppc_elf_validate_fix): It's OK to have any kind of relocation against a not-loaded section. --- gas/ChangeLog | 5 +++++ gas/config/tc-ppc.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'gas') diff --git a/gas/ChangeLog b/gas/ChangeLog index a7157cc..ca719da 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-07-31 Geoffrey Keating + + * 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 * config/obj-elf.c (obj_elf_symver): Temporarily modify lex_type diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 621b6db..0710a67 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -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) -- cgit v1.1