diff options
-rw-r--r-- | opcodes/ChangeLog | 2 | ||||
-rw-r--r-- | opcodes/cgen-dis.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 44d4820..cd108fc 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,7 @@ Mon Apr 7 11:45:44 1997 Doug Evans <dje@canuck.cygnus.com> + * cgen-dis.c (build_dis_hash_table): Fix xmalloc size computation. + * cgen-opc.c (hash_keyword_name): Improve algorithm. * disassemble.c (disassembler): Handle m32r. diff --git a/opcodes/cgen-dis.c b/opcodes/cgen-dis.c index 384fe5c..9ed8a0a 100644 --- a/opcodes/cgen-dis.c +++ b/opcodes/cgen-dis.c @@ -70,7 +70,7 @@ build_dis_hash_table () dis_hash_table = (CGEN_INSN_LIST **) xmalloc (hash_size * sizeof (CGEN_INSN_LIST *) - + count * sizeof (CGEN_INSN_LIST *)); + + count * sizeof (CGEN_INSN_LIST)); memset (dis_hash_table, 0, hash_size * sizeof (CGEN_INSN_LIST *) + count * sizeof (CGEN_INSN_LIST)); |