diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/xcofflink.c | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 51544cc..9182ef2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,11 @@ 2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com> + * xcofflink.c (xcoff_mark, xcoff_link_input_bfd): Don't copy + R_POS and R_NEG relocations against absolute symbols to the + .loader section. + +2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com> + * coff64-rs6000.c (xcoff64_write_object_contents): Set the cputype to 2 for bfd_mach_ppc_620. diff --git a/bfd/xcofflink.c b/bfd/xcofflink.c index 21d9a2d..0a38ac3 100644 --- a/bfd/xcofflink.c +++ b/bfd/xcofflink.c @@ -2335,6 +2335,11 @@ xcoff_mark (struct bfd_link_info *info, asection *sec) case R_NEG: case R_RL: case R_RLA: + if (h != NULL + && (h->root.type == bfd_link_hash_defined + || h->root.type == bfd_link_hash_defweak) + && bfd_is_abs_section (h->root.u.def.section)) + break; ++xcoff_hash_table (info)->ldrel_count; if (h != NULL) h->flags |= XCOFF_LDREL; @@ -4460,6 +4465,11 @@ xcoff_link_input_bfd (struct xcoff_final_link_info *finfo, case R_NEG: case R_RL: case R_RLA: + if (h != NULL + && (h->root.type == bfd_link_hash_defined + || h->root.type == bfd_link_hash_defweak) + && bfd_is_abs_section (h->root.u.def.section)) + break; /* This reloc needs to be copied into the .loader section. */ ldrel.l_vaddr = irel->r_vaddr; |