* 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.
This commit is contained in:
Steve Chamberlain 1993-06-04 23:03:00 +00:00
parent cb0b800b0e
commit ad86fa7047
1 changed files with 2 additions and 2 deletions

View File

@ -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))