diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-21 18:44:40 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-07-21 18:44:40 +0000 |
commit | 4d135f1c5a9b0d95fcf46d40e8cc362f61b76b9c (patch) | |
tree | 60923c1030247eb5ef2f2445d1264c48556c108d /opcodes/hppa-dis.c | |
parent | 22b4b22308095876497fab6f1ee4de086d9a9488 (diff) | |
download | gdb-4d135f1c5a9b0d95fcf46d40e8cc362f61b76b9c.zip gdb-4d135f1c5a9b0d95fcf46d40e8cc362f61b76b9c.tar.gz gdb-4d135f1c5a9b0d95fcf46d40e8cc362f61b76b9c.tar.bz2 |
* hppa-dis.c (print_insn_hppa, cases 'a', 'd'): Print space afterwards.
* hppa-dis.c (print_insn_hppa, case 'd'): Use GET_COND not GET_FIELD.
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r-- | opcodes/hppa-dis.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 93b7ea3..1f2134f 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -455,10 +455,13 @@ print_insn_hppa (memaddr, info) info); break; case 'a': - (*info->fprintf_func) (info->stream, "%s", - compare_cond_names[GET_COND (insn)]); + (*info->fprintf_func) (info->stream, "%s ", + compare_cond_names[GET_COND (insn)]); break; case 'd': + (*info->fprintf_func) (info->stream, "%s ", + add_cond_names[GET_COND (insn)]); + break; case '!': (*info->fprintf_func) (info->stream, "%s", add_cond_names[GET_FIELD (insn, 16, 18)]); |