diff options
Diffstat (limited to 'bfd/coff-ppc.c')
-rw-r--r-- | bfd/coff-ppc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coff-ppc.c b/bfd/coff-ppc.c index 40824c5..ab5c2c8 100644 --- a/bfd/coff-ppc.c +++ b/bfd/coff-ppc.c @@ -2420,9 +2420,9 @@ ppc_bfd_coff_final_link (bfd *abfd, struct bfd_link_info *info) _bfd_stringtab_free (flaginfo.strtab); - /* Setting bfd_get_symcount to 0 will cause write_object_contents to + /* Setting symcount to 0 will cause write_object_contents to not try to write out the symbols. */ - bfd_get_symcount (abfd) = 0; + abfd->symcount = 0; return TRUE; |