* serial.h (SERIAL_SET_TTY_STATE): Comment return value.
[deliverable/binutils-gdb.git] / gdb / mips-pinsn.c
index 859451820e39fb5aad5849c43e2978d72de00ef6..fff36d83c3faa7d70b0fdda2bc655af5c6ad7c1d 100644 (file)
@@ -18,9 +18,7 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #include "defs.h"
-
-/* Mips instructions are never longer than this many bytes.  */
-#define MAXLEN 4
+#include "dis-asm.h"
 
 /* Print the mips instruction at address MEMADDR in debugged memory,
    on STREAM.  Returns length of the instruction, in bytes, which
@@ -29,18 +27,15 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 int
 print_insn (memaddr, stream)
      CORE_ADDR memaddr;
-     FILE *stream;
+     GDB_FILE *stream;
 {
-  unsigned char buffer[MAXLEN];
   disassemble_info info;
 
   GDB_INIT_DISASSEMBLE_INFO(info, stream);
 
-  read_memory (memaddr, buffer, MAXLEN);
-
   /* print_insn_mips is in opcodes/mips-dis.c.  */
   if (TARGET_BYTE_ORDER == BIG_ENDIAN)
-    print_insn_big_mips (memaddr, buffer, &info);
+    return print_insn_big_mips ((bfd_vma) memaddr, &info);
   else
-    print_insn_little_mips (memaddr, buffer, &info);
+    return print_insn_little_mips ((bfd_vma) memaddr, &info);
 }
This page took 0.022709 seconds and 4 git commands to generate.