diff options
author | Jeff Law <law@redhat.com> | 1999-09-18 18:09:38 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-18 18:09:38 +0000 |
commit | debc018de3f5bd6424c3fa5590e34b76a5fd5daa (patch) | |
tree | 9c037a3dfa7931183831ddc6758025ca8be263c5 /opcodes/hppa-dis.c | |
parent | 9392fb1136a776293e6a57a4f748833f8a377879 (diff) | |
download | gdb-debc018de3f5bd6424c3fa5590e34b76a5fd5daa.zip gdb-debc018de3f5bd6424c3fa5590e34b76a5fd5daa.tar.gz gdb-debc018de3f5bd6424c3fa5590e34b76a5fd5daa.tar.bz2 |
* hppa-dis.c: (print_insn_hppa): Handle 'fX'.
Diffstat (limited to 'opcodes/hppa-dis.c')
-rw-r--r-- | opcodes/hppa-dis.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index d512d86..4c2c6ce 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -384,6 +384,16 @@ print_insn_hppa (memaddr, info) else fput_fp_reg (GET_FIELD (insn, 6, 10), info); break; + + /* 'fA' will not generate a space before the regsiter + name. Normally that is fine. Except that it + causes problems with xmpyu which has no FP format + completer. */ + case 'X': + fputs_filtered (" ", info); + + /* FALLTHRU */ + case 'A': if (GET_FIELD (insn, 24, 24)) fput_fp_reg_r (GET_FIELD (insn, 6, 10), info); |