diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-02-06 22:41:58 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-04-27 22:05:03 -0400 |
commit | 6395b62847e581acc3e8fa179444b824d17b3d68 (patch) | |
tree | e6ac20292c6824c192a09d04ce34cc6d3c0800f0 /gdb/infcmd.c | |
parent | 086d03c91ec1487ed3cc96554d29b2120dd37b5b (diff) | |
download | gdb-6395b62847e581acc3e8fa179444b824d17b3d68.zip gdb-6395b62847e581acc3e8fa179444b824d17b3d68.tar.gz gdb-6395b62847e581acc3e8fa179444b824d17b3d68.tar.bz2 |
gdb: remove BLOCK_ENTRY_PC macro
Replace with equivalent method.
Change-Id: I0e033095e7358799930775e61028b48246971a7d
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 5368fcd..53c9e3d 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1345,7 +1345,7 @@ until_next_command (int from_tty) { sal = find_pc_line (pc, 0); - tp->control.step_range_start = BLOCK_ENTRY_PC (func->value_block ()); + tp->control.step_range_start = func->value_block ()->entry_pc (); tp->control.step_range_end = sal.end; /* By setting the step_range_end based on the current pc, we are |