summaryrefslogtreecommitdiff
path: root/bfd/cofflink.c
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2000-11-27 12:45:17 +0000
committerPhil Blundell <philb@gnu.org>2000-11-27 12:45:17 +0000
commit079847c733aaa3f7e5633d7bbaa54c77f41bd376 (patch)
tree995253e987a71b6aa4282c65fe344cbbb45143b5 /bfd/cofflink.c
parented30e8075bdaebe5f16a3336626044d272dbece2 (diff)
downloadbinutils-redhat-079847c733aaa3f7e5633d7bbaa54c77f41bd376.tar.gz
2000-11-27 Philip Blundell <pb@futuretv.com>
* libcoff-in.h (coff_tdata): Add `strings_written' flag. (obj_coff_strings_written): New accessor macro for above. * libcoff.h: Regenerate. * cofflink.c (_bfd_coff_final_link): Say that we wrote the strings. * coffcode.h (coff_write_object_contents): No need to write out the string table if it's already been done.
Diffstat (limited to 'bfd/cofflink.c')
-rw-r--r--bfd/cofflink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/cofflink.c b/bfd/cofflink.c
index 05c0689ea9..4e16f6400e 100644
--- a/bfd/cofflink.c
+++ b/bfd/cofflink.c
@@ -1102,6 +1102,8 @@ _bfd_coff_final_link (abfd, info)
if (! _bfd_stringtab_emit (abfd, finfo.strtab))
return false;
+
+ obj_coff_strings_written (abfd) = true;
}
_bfd_stringtab_free (finfo.strtab);