* mips-pinsn.c (print_insn_arg, case 'B'): Disassemble `break'

instruction's argument.  Patch from jonathan@cs.stanford.edu
(Jonathan Stone).
This commit is contained in:
John Gilmore 1992-09-22 07:46:14 +00:00
parent 8b9f3fffcd
commit ebeccdf0b8
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Tue Sep 22 00:43:51 1992 John Gilmore (gnu@cygnus.com)
* mips-pinsn.c (print_insn_arg, case 'B'): Disassemble `break'
instruction's argument. Patch from jonathan@cs.stanford.edu
(Jonathan Stone).
Mon Sep 21 18:16:30 1992 K. Richard Pixley (rich@sendai.cygnus.com)
Break the thread of control that implies that a unix child

View File

@ -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;