* m68k-tdep.c (m68k_gdbarch_init): Use set_gdbarch_print_insn ...
authorAndreas Schwab <schwab@linux-m68k.org>
Mon, 2 Jun 2003 22:56:52 +0000 (22:56 +0000)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 2 Jun 2003 22:56:52 +0000 (22:56 +0000)
(_initialize_m68k_tdep): ... instead of deprecated_tm_print_insn.

gdb/ChangeLog
gdb/m68k-tdep.c

index fbd301d..e5e104b 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-03  Andreas Schwab  <schwab@suse.de>
+
+       * m68k-tdep.c (m68k_gdbarch_init): Use set_gdbarch_print_insn ...
+       (_initialize_m68k_tdep): ... instead of deprecated_tm_print_insn.
+
 2003-06-02  Richard Henderson  <rth@redhat.com>
 
        * alpha-tdep.c (alpha_register_reggroup_p): Zero is only
index a7b87c5..44be19d 100644 (file)
@@ -966,6 +966,9 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
   /* Should be using push_dummy_call.  */
   set_gdbarch_deprecated_dummy_write_sp (gdbarch, generic_target_write_sp);
 
+  /* Disassembler.  */
+  set_gdbarch_print_insn (gdbarch, print_insn_m68k);
+
 #if defined JB_PC && defined JB_ELEMENT_SIZE
   tdep->jb_pc = JB_PC;
   tdep->jb_elt_size = JB_ELEMENT_SIZE;
@@ -999,5 +1002,4 @@ void
 _initialize_m68k_tdep (void)
 {
   gdbarch_register (bfd_arch_m68k, m68k_gdbarch_init, m68k_dump_tdep);
-  deprecated_tm_print_insn = print_insn_m68k;
 }