* config/h8300.c: Support for H8/300-H opcodes.
authorSteve Chamberlain <sac@cygnus>
Fri, 4 Jun 1993 23:03:00 +0000 (23:03 +0000)
committerSteve Chamberlain <sac@cygnus>
Fri, 4 Jun 1993 23:03:00 +0000 (23:03 +0000)
* 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

index d5282fa235e1126b70a8092097828e6451d723c0..b40c66d1be612c681791c0de37cbe0931cd29099 100644 (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))