From ad86fa704764b22b1f22e43fad53a9605445ea52 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Fri, 4 Jun 1993 23:03:00 +0000 Subject: [PATCH] * 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. --- gas/config/obj-coffbfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.30.2