mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
gdb: remove current_top_target function
The current_top_target function is a hidden dependency on the current inferior. Since I'd like to slowly move towards reducing our dependency on the global current state, remove this function and make callers use current_inferior ()->top_target () There is no expected change in behavior, but this one step towards making those callers use the inferior from their context, rather than refer to the global current inferior. gdb/ChangeLog: * target.h (current_top_target): Remove, make callers use the current inferior instead. * target.c (current_top_target): Remove. Change-Id: Iccd457036f84466cdaa3865aa3f9339a24ea001d
This commit is contained in:
@ -2478,9 +2478,8 @@ inside_main_func (frame_info *this_frame)
|
||||
|
||||
/* Convert any function descriptor addresses into the actual function
|
||||
code address. */
|
||||
sym_addr
|
||||
= gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame),
|
||||
sym_addr, current_top_target ());
|
||||
sym_addr = gdbarch_convert_from_func_ptr_addr
|
||||
(get_frame_arch (this_frame), sym_addr, current_inferior ()->top_target ());
|
||||
|
||||
return sym_addr == get_frame_func (this_frame);
|
||||
}
|
||||
|
Reference in New Issue
Block a user