diff options
Diffstat (limited to 'gdb/mips-pinsn.c')
-rw-r--r-- | gdb/mips-pinsn.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/mips-pinsn.c b/gdb/mips-pinsn.c index 993541f..ca0e825 100644 --- a/gdb/mips-pinsn.c +++ b/gdb/mips-pinsn.c @@ -79,6 +79,10 @@ print_insn_arg (d, l, stream, pc) fprintf (stream, "0x%x", ((struct op_r_fmt *) l)->shamt); break; + case 'B': + fprintf (stream, "0x%x", ((struct op_brk_fmt *) l)->code); + break; + case 'S': fprintf (stream, "$f%d", ((struct fop_r_fmt *) l)->fs); break; |