diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-05-10 11:30:34 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-05-25 09:40:58 -0400 |
commit | b00b30b2981d393743bafe86b5ea37fd2299eccc (patch) | |
tree | f986d2f0f1111ac762104272665afa1e4ec1919f /gdb/break-catch-load.c | |
parent | 20afe380e8c1c2647e9475340a0f6a53d573331b (diff) | |
download | binutils-b00b30b2981d393743bafe86b5ea37fd2299eccc.zip binutils-b00b30b2981d393743bafe86b5ea37fd2299eccc.tar.gz binutils-b00b30b2981d393743bafe86b5ea37fd2299eccc.tar.bz2 |
gdb: remove bp_location_pointer_iterator
Remove the bp_location_pointer_iterator layer. Adjust all users of
breakpoint::locations to use references instead of pointers.
Change-Id: Iceed34f5e0f5790a9cf44736aa658be6d1ba1afa
Reviewed-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/break-catch-load.c')
-rw-r--r-- | gdb/break-catch-load.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/break-catch-load.c b/gdb/break-catch-load.c index d33313a..4396288 100644 --- a/gdb/break-catch-load.c +++ b/gdb/break-catch-load.c @@ -102,9 +102,9 @@ solib_catchpoint::breakpoint_hit (const struct bp_location *bl, if (pspace != NULL && other->pspace != pspace) continue; - for (bp_location *other_bl : other->locations ()) + for (bp_location &other_bl : other->locations ()) { - if (other->breakpoint_hit (other_bl, aspace, bp_addr, ws)) + if (other->breakpoint_hit (&other_bl, aspace, bp_addr, ws)) return 1; } } |