diff options
author | Alan Modra <amodra@gmail.com> | 2003-02-25 00:20:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-02-25 00:20:29 +0000 |
commit | 75776faa40b1d1695c766b0301abb4c4435ba9e4 (patch) | |
tree | 517d25ea872cfdd734ba200f4c2f3243a22a16a5 /opcodes | |
parent | 48b62fee11c97cbfd72e4ce5107902411101c1d5 (diff) | |
download | fsf-binutils-gdb-75776faa40b1d1695c766b0301abb4c4435ba9e4.zip fsf-binutils-gdb-75776faa40b1d1695c766b0301abb4c4435ba9e4.tar.gz fsf-binutils-gdb-75776faa40b1d1695c766b0301abb4c4435ba9e4.tar.bz2 |
* 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')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/hppa-dis.c | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index de54da6..596567d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2003-02-25 Matthew Wilcox <willy@debian.org> + + * hppa-dis.c (print_insn_hppa <2 bit space register>): Do not print + the space register when the value is zero. + 2003-02-23 Elias Athanasopoulos <elathan@phys.uoa.gr> * mips-dis.c (print_mips_disassembler_options): Make 'i' unsigned, diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index d9ab9dd..4a7bde2 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': |