diff options
Diffstat (limited to 'gdb/m32r-tdep.c')
-rw-r--r-- | gdb/m32r-tdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/m32r-tdep.c b/gdb/m32r-tdep.c index aa65f5a..fc30475 100644 --- a/gdb/m32r-tdep.c +++ b/gdb/m32r-tdep.c @@ -516,7 +516,7 @@ struct m32r_unwind_cache for it IS the sp for the next frame. */ static struct m32r_unwind_cache * -m32r_frame_unwind_cache (struct frame_info *this_frame, +m32r_frame_unwind_cache (frame_info_ptr this_frame, void **this_prologue_cache) { CORE_ADDR pc, scan_limit; @@ -793,7 +793,7 @@ m32r_return_value (struct gdbarch *gdbarch, struct value *function, frame. This will be used to create a new GDB frame struct. */ static void -m32r_frame_this_id (struct frame_info *this_frame, +m32r_frame_this_id (frame_info_ptr this_frame, void **this_prologue_cache, struct frame_id *this_id) { struct m32r_unwind_cache *info @@ -823,7 +823,7 @@ m32r_frame_this_id (struct frame_info *this_frame, } static struct value * -m32r_frame_prev_register (struct frame_info *this_frame, +m32r_frame_prev_register (frame_info_ptr this_frame, void **this_prologue_cache, int regnum) { struct m32r_unwind_cache *info @@ -842,7 +842,7 @@ static const struct frame_unwind m32r_frame_unwind = { }; static CORE_ADDR -m32r_frame_base_address (struct frame_info *this_frame, void **this_cache) +m32r_frame_base_address (frame_info_ptr this_frame, void **this_cache) { struct m32r_unwind_cache *info = m32r_frame_unwind_cache (this_frame, this_cache); |