diff options
author | Jeff Law <law@redhat.com> | 1999-08-28 08:00:27 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-08-28 08:00:27 +0000 |
commit | a010f0a9c29beb11daa9f110ce5b8d6ed70ad829 (patch) | |
tree | 235f1d496add040adc80fcd38be6b4161e525413 /opcodes/hppa-dis.c | |
parent | e3002d81acf1d612a8aee307faf428fb9bab6254 (diff) | |
download | gdb-a010f0a9c29beb11daa9f110ce5b8d6ed70ad829.tar.gz |
Add missing '!' change.
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r-- | opcodes/hppa-dis.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index f73fa9f99f2..e2a778f49a3 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -618,6 +618,9 @@ print_insn_hppa (memaddr, info) (*info->fprintf_func) (info->stream, "%d", GET_FIELD (insn, 24, 25)); break; + case '!': + (*info->fprintf_func) (info->stream, "%sar"); + break; case 'p': (*info->fprintf_func) (info->stream, "%d", 31 - GET_FIELD (insn, 22, 26)); |