From: Maciej W. Rozycki Date: Fri, 11 Jun 2004 14:19:32 +0000 (+0000) Subject: * coff-alpha.c (alpha_relocate_section): Set used_by_bfd directly X-Git-Tag: csl-arm-2004-q3~1239 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9edc8084b1987429153078e465b731dbb88b47d;p=external%2Fbinutils.git * coff-alpha.c (alpha_relocate_section): Set used_by_bfd directly as ecoff_section_data() does not return a valid lvalue. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 99de171..2de9b6c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2004-06-11 Maciej W. Rozycki + + * coff-alpha.c (alpha_relocate_section): Set used_by_bfd directly + as ecoff_section_data() does not return a valid lvalue. + 2004-06-09 Alexandre Oliva * elflink.c (elf_sort_symbol): Compare section id, not pointers. diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c index 262af47..3ea6333 100644 --- a/bfd/coff-alpha.c +++ b/bfd/coff-alpha.c @@ -1455,7 +1455,7 @@ alpha_relocate_section (output_bfd, info, input_bfd, input_section, amt = sizeof (struct ecoff_section_tdata); lita_sec_data = ((struct ecoff_section_tdata *) bfd_zalloc (input_bfd, amt)); - ecoff_section_data (input_bfd, lita_sec) = lita_sec_data; + lita_sec->used_by_bfd = lita_sec_data; } if (lita_sec_data->gp != 0)