From: Jim Kingdon Date: Tue, 20 Jul 1993 00:22:35 +0000 (+0000) Subject: * hppa-dis.c (print_insn_hppa): Use extract_5r_store for 'r'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b2ad2e64734b5a3f61ef358bc2c0e26279324298;p=binutils-gdb.git * hppa-dis.c (print_insn_hppa): Use extract_5r_store for 'r'. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 69c369ad0a8..0c2ff96cc8e 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 f83d7701426..93b7ea32dd6 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;