aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1993-06-04 23:03:00 +0000
committerSteve Chamberlain <sac@cygnus>1993-06-04 23:03:00 +0000
commitad86fa704764b22b1f22e43fad53a9605445ea52 (patch)
treefb7879ec5bd179e63135a1dac107caafb12ae6d0 /gas/config
parentcb0b800b0e74b70a8ba8c6fc8557444ffdc93f0b (diff)
downloadfsf-binutils-gdb-ad86fa704764b22b1f22e43fad53a9605445ea52.zip
fsf-binutils-gdb-ad86fa704764b22b1f22e43fad53a9605445ea52.tar.gz
fsf-binutils-gdb-ad86fa704764b22b1f22e43fad53a9605445ea52.tar.bz2
* 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.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/obj-coffbfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/obj-coffbfd.c b/gas/config/obj-coffbfd.c
index d5282fa..b40c66d 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))