diff options
Diffstat (limited to 'opcodes/cr16-dis.c')
-rw-r--r-- | opcodes/cr16-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/cr16-dis.c b/opcodes/cr16-dis.c index d5840cb..ac85552 100644 --- a/opcodes/cr16-dis.c +++ b/opcodes/cr16-dis.c @@ -800,7 +800,7 @@ print_insn_cr16 (bfd_vma memaddr, struct disassemble_info *info) /* If found, print the instruction's mnemonic and arguments. */ if (is_decoded > 0 && (cr16_words[0] != 0 || cr16_words[1] != 0)) { - if (strneq (instruction->mnemonic, "cinv", 4)) + if (startswith (instruction->mnemonic, "cinv")) info->fprintf_func (info->stream,"%s", getcinvstring (instruction->mnemonic)); else |