projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36b08f1
)
* config/tc-z8k.c (build_bytes): Correct order of memset args.
author
Alan Modra
<amodra@gmail.com>
Tue, 16 Jul 2002 13:37:49 +0000
(13:37 +0000)
committer
Alan Modra
<amodra@gmail.com>
Tue, 16 Jul 2002 13:37:49 +0000
(13:37 +0000)
gas/ChangeLog
patch
|
blob
|
history
gas/config/tc-z8k.c
patch
|
blob
|
history
diff --git
a/gas/ChangeLog
b/gas/ChangeLog
index 8f68da697fd8056c10aef4417ad259e41fd672ed..95f4a61a36f7260db605b690c30a229a63502311 100644
(file)
--- a/
gas/ChangeLog
+++ b/
gas/ChangeLog
@@
-1,3
+1,7
@@
+2002-07-16 Moritz Jodeit <moritz@jodeit.org>
+
+ * config/tc-z8k.c (build_bytes): Correct order of memset args.
+
2002-07-16 Nick Clifton <nickc@cambridge.redhat.com>
* NEWS: Add 'Changes in 2.13'.
diff --git
a/gas/config/tc-z8k.c
b/gas/config/tc-z8k.c
index 85afa104a38a2d5842d6228fb3f7c40411c29fe7..04723f8d834e2b4abe48a2a56ca8e80720eb5423 100644
(file)
--- a/
gas/config/tc-z8k.c
+++ b/
gas/config/tc-z8k.c
@@
-1005,7
+1005,7
@@
build_bytes (this_try, operand)
frag_wane (frag_now);
frag_new (0);
- memset (buffer,
20, 0
);
+ memset (buffer,
0, sizeof (buffer)
);
class_ptr = this_try->byte_info;
for (nibble = 0; (c = *class_ptr++); nibble++)