* ieee-float.c: Moved to ../libiberty.
[deliverable/binutils-gdb.git] / gdb / z8k-tdep.c
index 73d4b55121bc6fdcb8f42243310eecb2bf81f68f..65f73f07aedb0df7955a3478411eeae07761cde1 100644 (file)
@@ -209,15 +209,18 @@ print_insn (memaddr, stream)
      FILE *stream;
 {
   char temp[20];
+  disassemble_info info;
+
+  GDB_INIT_DISASSEMBLE_INFO(info, stream);
 
   read_memory (memaddr, temp, 20);
   if (BIG)
     {
-      return print_insn_z8001 (memaddr, temp, stream);
+      return print_insn_z8001 (memaddr, temp, &info);
     }
   else
     {
-      return print_insn_z8002 (memaddr, temp, stream);
+      return print_insn_z8002 (memaddr, temp, &info);
     }
 }
 
This page took 0.022799 seconds and 4 git commands to generate.