From: Steve Chamberlain Date: Fri, 4 Jun 1993 23:03:00 +0000 (+0000) Subject: * config/h8300.c: Support for H8/300-H opcodes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad86fa704764b22b1f22e43fad53a9605445ea52;p=binutils-gdb.git * config/h8300.c: Support for H8/300-H opcodes. * config/obj-coffbfd.c (w_strings): String table length is 4 bytes, no matter what the host int size is. --- diff --git a/gas/config/obj-coffbfd.c b/gas/config/obj-coffbfd.c index d5282fa235e..b40c66d1be6 100644 --- a/gas/config/obj-coffbfd.c +++ b/gas/config/obj-coffbfd.c @@ -1678,8 +1678,8 @@ DEFUN (w_strings, (where), symbolS *symbolP; /* Gotta do md_ byte-ordering stuff for string_byte_count first - KWK */ - md_number_to_chars (where, string_byte_count, sizeof (string_byte_count)); - where += sizeof (string_byte_count); + md_number_to_chars (where, string_byte_count, 4); + where += 4; for (symbolP = symbol_rootP; symbolP; symbolP = symbol_next (symbolP))