aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-07-20 00:22:35 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-07-20 00:22:35 +0000
commitb2ad2e64734b5a3f61ef358bc2c0e26279324298 (patch)
treed2ecd5d85a9f78ab64484858f1d06f7da9ace8c1 /opcodes
parent8622d4e5f13bf002292d27ebe0a618c382a96466 (diff)
downloadgdb-b2ad2e64734b5a3f61ef358bc2c0e26279324298.zip
gdb-b2ad2e64734b5a3f61ef358bc2c0e26279324298.tar.gz
gdb-b2ad2e64734b5a3f61ef358bc2c0e26279324298.tar.bz2
* hppa-dis.c (print_insn_hppa): Use extract_5r_store for 'r'.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog2
-rw-r--r--opcodes/hppa-dis.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 69c369a..0c2ff96 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,5 +1,7 @@
Mon Jul 19 13:52:21 1993 Jim Kingdon (kingdon@deneb.cygnus.com)
+ * hppa-dis.c (print_insn_hppa): Use extract_5r_store for 'r'.
+
* hppa-dis.c (print_insn_hppa, case '>'): If next character is 'n',
don't output a space.
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c
index f83d770..93b7ea3 100644
--- a/opcodes/hppa-dis.c
+++ b/opcodes/hppa-dis.c
@@ -486,6 +486,9 @@ print_insn_hppa (memaddr, info)
case 'V':
fput_const (extract_5_store (insn), info);
break;
+ case 'r':
+ fput_const (extract_5r_store (insn), info);
+ break;
case 'R':
fput_const (extract_5R_store (insn), info);
break;