mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 21:34:46 +08:00
gdb: remove BLOCK_{START,END} macros
Replace with equivalent methods. Change-Id: I10a6c8a2a86462d9d4a6a6409a3f07a6bea66310
This commit is contained in:

committed by
Simon Marchi

parent
dfb138f934
commit
4b8791e10e
@ -278,8 +278,8 @@ find_pc_partial_function_sym (CORE_ADDR pc,
|
||||
|
||||
if (BLOCK_CONTIGUOUS_P (b))
|
||||
{
|
||||
cache_pc_function_low = BLOCK_START (b);
|
||||
cache_pc_function_high = BLOCK_END (b);
|
||||
cache_pc_function_low = b->start ();
|
||||
cache_pc_function_high = b->end ();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user