summaryrefslogtreecommitdiff
path: root/opcodes/xstormy16-opc.c
diff options
context:
space:
mode:
Diffstat (limited to 'opcodes/xstormy16-opc.c')
-rw-r--r--opcodes/xstormy16-opc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/opcodes/xstormy16-opc.c b/opcodes/xstormy16-opc.c
index 3ac3c2288f..54b1d41255 100644
--- a/opcodes/xstormy16-opc.c
+++ b/opcodes/xstormy16-opc.c
@@ -1165,7 +1165,10 @@ xstormy16_cgen_init_opcode_table (CGEN_CPU_DESC cd)
const CGEN_OPCODE *oc = & xstormy16_cgen_macro_insn_opcode_table[0];
CGEN_INSN *insns = xmalloc (num_macros * sizeof (CGEN_INSN));
- memset (insns, 0, num_macros * sizeof (CGEN_INSN));
+ /* This test has been added to avoid a warning generated
+ if memset is called with a third argument of value zero. */
+ if (num_macros >= 1)
+ memset (insns, 0, num_macros * sizeof (CGEN_INSN));
for (i = 0; i < num_macros; ++i)
{
insns[i].base = &ib[i];