* hppa-dis.c: (print_insn_hppa): Handle 'fX'.
This commit is contained in:
parent
9392fb1136
commit
debc018de3
2 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
Sat Sep 18 11:36:12 1999 Jeffrey A Law (law@cygnus.com)
|
Sat Sep 18 11:36:12 1999 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* hppa-dis.c: (print_insn_hppa): Handle 'fX'.
|
||||||
|
|
||||||
* hppa-dis.c: (print_insn_hppa): Add missing break after
|
* hppa-dis.c: (print_insn_hppa): Add missing break after
|
||||||
FP register case.
|
FP register case.
|
||||||
|
|
||||||
|
|
|
@ -384,6 +384,16 @@ print_insn_hppa (memaddr, info)
|
||||||
else
|
else
|
||||||
fput_fp_reg (GET_FIELD (insn, 6, 10), info);
|
fput_fp_reg (GET_FIELD (insn, 6, 10), info);
|
||||||
break;
|
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':
|
case 'A':
|
||||||
if (GET_FIELD (insn, 24, 24))
|
if (GET_FIELD (insn, 24, 24))
|
||||||
fput_fp_reg_r (GET_FIELD (insn, 6, 10), info);
|
fput_fp_reg_r (GET_FIELD (insn, 6, 10), info);
|
||||||
|
|
Loading…
Reference in a new issue