diff options
author | Alan Modra <amodra@bigpond.net.au> | 2003-02-25 00:20:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2003-02-25 00:20:29 +0000 |
commit | 06c6ca26116c8aca446b3807d5e9e4149ec6f326 (patch) | |
tree | 3704ae76d78ddd8bf471de19ac324f56b3de9a0f /opcodes/hppa-dis.c | |
parent | c110b8df50133dfdb63310fecd8b014137601335 (diff) | |
download | gdb-06c6ca26116c8aca446b3807d5e9e4149ec6f326.tar.gz |
* hppa-dis.c (print_insn_hppa <2 bit space register>): Do not print
the space register when the value is zero.
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r-- | opcodes/hppa-dis.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index d9ab9dd99d5..4a7bde225e2 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -541,8 +541,12 @@ print_insn_hppa (memaddr, info) fput_const (extract_5_load (insn), info); break; case 's': - (*info->fprintf_func) (info->stream, - "sr%d", GET_FIELD (insn, 16, 17)); + { + int space = GET_FIELD (insn, 16, 17); + /* Zero means implicit addressing, not use of sr0. */ + if (space != 0) + (*info->fprintf_func) (info->stream, "sr%d", space); + } break; case 'S': |