* avr-tdep.c (avr_push_dummy_code): Delete function.
authorTheodore A. Roth <troth@openavr.org>
Thu, 19 Jun 2003 19:29:09 +0000 (19:29 +0000)
committerTheodore A. Roth <troth@openavr.org>
Thu, 19 Jun 2003 19:29:09 +0000 (19:29 +0000)
(avr_gdbarch_init): Don't call set_gdbarch_push_dummy_code.

gdb/ChangeLog
gdb/avr-tdep.c

index 82c739c4edd7621e699c79bcce632f18758fed26..85f415e15398494119db4dc358791f66f73d1172 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-19  Theodore A. Roth  <troth@openavr.org>
+
+       * avr-tdep.c (avr_push_dummy_code): Delete function.
+       (avr_gdbarch_init): Don't call set_gdbarch_push_dummy_code.
+
 2003-06-19  Daniel Jacobowitz  <drow@mvista.com>
 
        * arch-utils.c (default_prepare_to_proceed): Remove.
index e1880d0f4aebc89f82bb889cf4a45c3188a172cf..aef8cc63510dd133bbc6d4d53bee34e35eafb020 100644 (file)
@@ -1128,16 +1128,6 @@ avr_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
   return frame_id_build (avr_make_saddr (base), frame_pc_unwind (next_frame));
 }
 
-static CORE_ADDR
-avr_push_dummy_code (struct gdbarch *gdbarch,
-                     CORE_ADDR sp, CORE_ADDR funaddr, int using_gcc,
-                     struct value **args, int nargs,
-                     struct type *value_type,
-                     CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
-{
-  fprintf_unfiltered (gdb_stderr, " ----->>>>  push_dummy_code\n");
-}
-
 /* When arguments must be pushed onto the stack, they go on in reverse
    order.  The below implements a FILO (stack) to do this. */
 
@@ -1357,7 +1347,6 @@ avr_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
 
   set_gdbarch_call_dummy_address (gdbarch, avr_call_dummy_address);
   set_gdbarch_push_dummy_call (gdbarch, avr_push_dummy_call);
-  set_gdbarch_push_dummy_code (gdbarch, avr_push_dummy_code);
 
   set_gdbarch_address_to_pointer (gdbarch, avr_address_to_pointer);
   set_gdbarch_pointer_to_address (gdbarch, avr_pointer_to_address);
This page took 0.030963 seconds and 4 git commands to generate.