* m68k-tdep.c (m68k_frameless_function_invocation): Remove
authorMark Kettenis <kettenis@gnu.org>
Sat, 8 May 2004 15:52:15 +0000 (15:52 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sat, 8 May 2004 15:52:15 +0000 (15:52 +0000)
function.
(m68k_gdbarch_init): Don't set
deprecated_frameless_function_invocation.

gdb/ChangeLog
gdb/m68k-tdep.c

index 8d30e98..6b332c7 100644 (file)
@@ -1,3 +1,10 @@
+2004-05-08  Mark Kettenis  <kettenis@gnu.org>
+
+       * m68k-tdep.c (m68k_frameless_function_invocation): Remove
+       function.
+       (m68k_gdbarch_init): Don't set
+       deprecated_frameless_function_invocation.
+
 2004-05-07  Randolph Chung  <tausq@debian.org>
 
        * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use 
index c54602a..aab2c33 100644 (file)
@@ -327,20 +327,6 @@ m68k_svr4_return_value (struct gdbarch *gdbarch, struct type *type,
   return RETURN_VALUE_REGISTER_CONVENTION;
 }
 \f
-
-/* A function that tells us whether the function invocation represented
-   by fi does not have a frame on the stack associated with it.  If it
-   does not, FRAMELESS is set to 1, else 0.  */
-
-static int
-m68k_frameless_function_invocation (struct frame_info *fi)
-{
-  if (get_frame_type (fi) == SIGTRAMP_FRAME)
-    return 0;
-  else
-    return legacy_frameless_look_for_prologue (fi);
-}
-
 int
 delta68_in_sigtramp (CORE_ADDR pc, char *name)
 {
@@ -1111,7 +1097,6 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
   set_gdbarch_believe_pcc_promotion (gdbarch, 1);
   set_gdbarch_decr_pc_after_break (gdbarch, 2);
 
-  set_gdbarch_deprecated_frameless_function_invocation (gdbarch, m68k_frameless_function_invocation);
   set_gdbarch_frame_args_skip (gdbarch, 8);
 
   set_gdbarch_register_type (gdbarch, m68k_register_type);