diff options
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r-- | opcodes/hppa-dis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 115013c..3026996 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -366,7 +366,7 @@ print_insn_hppa (memaddr, info) (*info->fprintf_func) (info->stream, "%s", opcode->name); - if (!strchr ("cCY<?!@-+&U>~nZFIM", opcode->args[0])) + if (!strchr ("cCY<?!@-+&U>~nZFIMad", opcode->args[0])) (*info->fprintf_func) (info->stream, " "); for (s = opcode->args; *s != '\0'; ++s) { @@ -453,11 +453,11 @@ print_insn_hppa (memaddr, info) fputs_filtered (add_cond_names[GET_FIELD (insn, 16, 18) + 8], info); break; - case 'd': + case 'a': (*info->fprintf_func) (info->stream, "%s", compare_cond_names[GET_COND (insn)]); break; - case 'a': + case 'd': case '!': (*info->fprintf_func) (info->stream, "%s", add_cond_names[GET_FIELD (insn, 16, 18)]); |