use remote-utils facilities for baud_rate
[deliverable/binutils-gdb.git] / gdb / i386-pinsn.c
index 6c88de9100aa2097dad91054f87d4b9abd1427ee..b6d7fe91e39f4855bbbb8e8456a4f6c41dff69a1 100644 (file)
@@ -20,9 +20,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "defs.h"
 #include "dis-asm.h"
 
-#define MAXLEN 20
 \f
-/* Print the m68k instruction at address MEMADDR in debugged memory,
+/* Print the instruction at address MEMADDR in debugged memory,
    on STREAM.  Returns length of the instruction, in bytes.  */
 
 int
@@ -30,16 +29,9 @@ print_insn (memaddr, stream)
      CORE_ADDR memaddr;
      FILE *stream;
 {
-  unsigned char buffer[MAXLEN];
-  register int i;
-  register unsigned char *p;
-  register char *d;
-  register int bestmask;
-  int best;
   disassemble_info info;
 
   GDB_INIT_DISASSEMBLE_INFO(info, stream);
 
-  read_memory (memaddr, (char *) buffer, MAXLEN);
-  return print_insn_i386 (memaddr, buffer, &info);
+  return print_insn_i386 (memaddr, &info);
 }
This page took 0.023807 seconds and 4 git commands to generate.