* mips-pinsn.c (print_insn_arg, case 'B'): Disassemble `break'
authorJohn Gilmore <gnu@cygnus>
Tue, 22 Sep 1992 07:46:14 +0000 (07:46 +0000)
committerJohn Gilmore <gnu@cygnus>
Tue, 22 Sep 1992 07:46:14 +0000 (07:46 +0000)
instruction's argument.  Patch from jonathan@cs.stanford.edu
(Jonathan Stone).

gdb/ChangeLog
gdb/mips-pinsn.c

index 84c17c264733970ab8f55170f7ae471d464f0bb0..2ed241c6693d96efd63afb25775b9e8ac4332a10 100644 (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
index 993541f2557d666c60d5474ffaabdc3979d470cf..ca0e825dfea549a0fe8dcfb9340135ac1fa7d46a 100644 (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;
This page took 0.026495 seconds and 4 git commands to generate.