summaryrefslogtreecommitdiff
path: root/opcodes/crx-dis.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2005-02-24 13:38:01 +0000
committerAlan Modra <amodra@gmail.com>2005-02-24 13:38:01 +0000
commit47d8304e8837825ab4fd60922b28f30c623f2c02 (patch)
tree1bab33d0bd25db1f298726002d5748ef074861c5 /opcodes/crx-dis.c
parentb2d52a4828c7bc73e3691c7620ce917f1c862d89 (diff)
downloadbinutils-gdb-47d8304e8837825ab4fd60922b28f30c623f2c02.tar.gz
* cris-dis.c (format_hex): Remove ineffective warning fix.
* crx-dis.c (make_instruction): Warning fix. * frv-asm.c: Regenerate.
Diffstat (limited to 'opcodes/crx-dis.c')
-rw-r--r--opcodes/crx-dis.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/crx-dis.c b/opcodes/crx-dis.c
index 928b0117c4e..640a90a5e5c 100644
--- a/opcodes/crx-dis.c
+++ b/opcodes/crx-dis.c
@@ -658,8 +658,9 @@ make_instruction (void)
for (i = 0; i < currInsn.nargs; i++)
{
- argument a = { 0 };
+ argument a;
+ memset (&a, 0, sizeof (a));
a.type = getargtype (instruction->operands[i].op_type);
if (instruction->operands[i].op_type == cst4
|| instruction->operands[i].op_type == rbase_dispu4)