From: Alan Modra Date: Tue, 6 Aug 2002 11:24:40 +0000 (+0000) Subject: * xcofflink.c (xcoff_write_global_symbol): Set n_scnum for abs_section. X-Git-Tag: drow-cplus-branchpoint~919 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0121a3da9ed7b30dafeba25718bc294153b3758c;p=external%2Fbinutils.git * xcofflink.c (xcoff_write_global_symbol): Set n_scnum for abs_section. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2917d27..4b9caa3 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,9 @@ 2002-08-06 Alan Modra + * xcofflink.c (xcoff_write_global_symbol): Set n_scnum for abs_section. + +2002-08-06 Alan Modra + * elf64-ppc.c (ppc64_elf_howto_raw): Zero all src_mask entries. 2002-08-06 Alan Modra diff --git a/bfd/xcofflink.c b/bfd/xcofflink.c index c179354..a869d7d 100644 --- a/bfd/xcofflink.c +++ b/bfd/xcofflink.c @@ -5887,7 +5887,10 @@ xcoff_write_global_symbol (h, inf) isym.n_value = (h->root.u.def.section->output_section->vma + h->root.u.def.section->output_offset + h->root.u.def.value); - isym.n_scnum = h->root.u.def.section->output_section->target_index; + if (bfd_is_abs_section (h->root.u.def.section->output_section)) + isym.n_scnum = N_ABS; + else + isym.n_scnum = h->root.u.def.section->output_section->target_index; isym.n_sclass = C_HIDEXT; aux.x_csect.x_smtyp = XTY_SD;