diff options
author | Tom Tromey <tom@tromey.com> | 2022-07-25 14:06:35 -0300 |
---|---|---|
committer | Bruno Larsen <blarsen@redhat.com> | 2022-10-10 11:57:10 +0200 |
commit | bd2b40ac129b167f1a709589dee9c009a04a6e21 (patch) | |
tree | 675eb8430a923c94353eca0ec2e7b56cfc1eae37 /gdb/infcall.c | |
parent | ba380b3e5162e89c4c81a73f4fb9fcbbbbe75e24 (diff) | |
download | binutils-bd2b40ac129b167f1a709589dee9c009a04a6e21.zip binutils-bd2b40ac129b167f1a709589dee9c009a04a6e21.tar.gz binutils-bd2b40ac129b167f1a709589dee9c009a04a6e21.tar.bz2 |
Change GDB to use frame_info_ptr
This changes GDB to use frame_info_ptr instead of frame_info *
The substitution was done with multiple sequential `sed` commands:
sed 's/^struct frame_info;/class frame_info_ptr;/'
sed 's/struct frame_info \*/frame_info_ptr /g' - which left some
issues in a few files, that were manually fixed.
sed 's/\<frame_info \*/frame_info_ptr /g'
sed 's/frame_info_ptr $/frame_info_ptr/g' - used to remove whitespace
problems.
The changed files were then manually checked and some 'sed' changes
undone, some constructors and some gets were added, according to what
made sense, and what Tromey originally did
Co-Authored-By: Bruno Larsen <blarsen@redhat.com>
Approved-by: Tom Tomey <tom@tromey.com>
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r-- | gdb/infcall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 3485219..16e6b9e 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -673,7 +673,7 @@ run_inferior_call (std::unique_ptr<call_thread_fsm> sm, static CORE_ADDR reserve_stack_space (const type *values_type, CORE_ADDR &sp) { - struct frame_info *frame = get_current_frame (); + frame_info_ptr frame = get_current_frame (); struct gdbarch *gdbarch = get_frame_arch (frame); CORE_ADDR addr = 0; @@ -771,7 +771,7 @@ call_function_by_hand_dummy (struct value *function, CORE_ADDR real_pc; CORE_ADDR bp_addr; struct frame_id dummy_id; - struct frame_info *frame; + frame_info_ptr frame; struct gdbarch *gdbarch; ptid_t call_thread_ptid; struct gdb_exception e; |