diff options
Diffstat (limited to 'gdb/alpha-mdebug-tdep.c')
-rw-r--r-- | gdb/alpha-mdebug-tdep.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/alpha-mdebug-tdep.c b/gdb/alpha-mdebug-tdep.c index 7691a53..7e9312d 100644 --- a/gdb/alpha-mdebug-tdep.c +++ b/gdb/alpha-mdebug-tdep.c @@ -185,7 +185,7 @@ struct alpha_mdebug_unwind_cache and store the resulting register save locations in the structure. */ static struct alpha_mdebug_unwind_cache * -alpha_mdebug_frame_unwind_cache (frame_info_ptr this_frame, +alpha_mdebug_frame_unwind_cache (const frame_info_ptr &this_frame, void **this_prologue_cache) { struct alpha_mdebug_unwind_cache *info; @@ -262,7 +262,7 @@ alpha_mdebug_frame_unwind_cache (frame_info_ptr this_frame, frame. This will be used to create a new GDB frame struct. */ static void -alpha_mdebug_frame_this_id (frame_info_ptr this_frame, +alpha_mdebug_frame_this_id (const frame_info_ptr &this_frame, void **this_prologue_cache, struct frame_id *this_id) { @@ -275,7 +275,7 @@ alpha_mdebug_frame_this_id (frame_info_ptr this_frame, /* Retrieve the value of REGNUM in FRAME. Don't give up! */ static struct value * -alpha_mdebug_frame_prev_register (frame_info_ptr this_frame, +alpha_mdebug_frame_prev_register (const frame_info_ptr &this_frame, void **this_prologue_cache, int regnum) { struct alpha_mdebug_unwind_cache *info @@ -306,7 +306,7 @@ alpha_mdebug_max_frame_size_exceeded (struct mdebug_extra_func_info *proc_desc) static int alpha_mdebug_frame_sniffer (const struct frame_unwind *self, - frame_info_ptr this_frame, + const frame_info_ptr &this_frame, void **this_cache) { CORE_ADDR pc = get_frame_address_in_block (this_frame); @@ -343,7 +343,7 @@ static const struct frame_unwind alpha_mdebug_frame_unwind = }; static CORE_ADDR -alpha_mdebug_frame_base_address (frame_info_ptr this_frame, +alpha_mdebug_frame_base_address (const frame_info_ptr &this_frame, void **this_prologue_cache) { struct alpha_mdebug_unwind_cache *info @@ -353,7 +353,7 @@ alpha_mdebug_frame_base_address (frame_info_ptr this_frame, } static CORE_ADDR -alpha_mdebug_frame_locals_address (frame_info_ptr this_frame, +alpha_mdebug_frame_locals_address (const frame_info_ptr &this_frame, void **this_prologue_cache) { struct alpha_mdebug_unwind_cache *info @@ -363,7 +363,7 @@ alpha_mdebug_frame_locals_address (frame_info_ptr this_frame, } static CORE_ADDR -alpha_mdebug_frame_args_address (frame_info_ptr this_frame, +alpha_mdebug_frame_args_address (const frame_info_ptr &this_frame, void **this_prologue_cache) { struct alpha_mdebug_unwind_cache *info @@ -380,7 +380,7 @@ static const struct frame_base alpha_mdebug_frame_base = { }; static const struct frame_base * -alpha_mdebug_frame_base_sniffer (frame_info_ptr this_frame) +alpha_mdebug_frame_base_sniffer (const frame_info_ptr &this_frame) { CORE_ADDR pc = get_frame_address_in_block (this_frame); struct mdebug_extra_func_info *proc_desc; |