mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* mips-dis.c (print_insn_args): Print $fcc only for FP
instructions, use $cc elsewise.
This commit is contained in:
parent
654c225a6d
commit
0d09bfe6d3
@ -1,3 +1,9 @@
|
||||
2006-04-28 Thiemo Seufer <ths@mips.com>
|
||||
Nigel Stevens <nigel@mips.com>
|
||||
|
||||
* mips-dis.c (print_insn_args): Print $fcc only for FP
|
||||
instructions, use $cc elsewise.
|
||||
|
||||
2006-04-28 Thiemo Seufer <ths@mips.com>
|
||||
Nigel Stevens <nigel@mips.com>
|
||||
|
||||
|
@ -1072,7 +1072,9 @@ print_insn_args (const char *d,
|
||||
break;
|
||||
|
||||
case 'N':
|
||||
(*info->fprintf_func) (info->stream, "$fcc%ld",
|
||||
(*info->fprintf_func) (info->stream,
|
||||
((opp->pinfo & (FP_D | FP_S)) != 0
|
||||
? "$fcc%ld" : "$cc%ld"),
|
||||
(l >> OP_SH_BCC) & OP_MASK_BCC);
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user