[3/4] Use gdb::checked_static_cast for code_breakpoint
Checks
Context |
Check |
Description |
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 |
success
|
Testing passed
|
linaro-tcwg-bot/tcwg_gdb_build--master-arm |
success
|
Testing passed
|
linaro-tcwg-bot/tcwg_gdb_check--master-aarch64 |
success
|
Testing passed
|
linaro-tcwg-bot/tcwg_gdb_check--master-arm |
success
|
Testing passed
|
Commit Message
This replaces some casts to 'code_breakpoint *' with
checked_static_cast.
---
gdb/breakpoint.c | 6 ++++--
gdb/elfread.c | 2 +-
2 files changed, 5 insertions(+), 3 deletions(-)
@@ -6174,10 +6174,12 @@ bpstat_run_callbacks (bpstat *bs_head)
handle_jit_event (bs->bp_location_at->address);
break;
case bp_gnu_ifunc_resolver:
- gnu_ifunc_resolver_stop ((code_breakpoint *) b);
+ gnu_ifunc_resolver_stop
+ (gdb::checked_static_cast<code_breakpoint *> (b));
break;
case bp_gnu_ifunc_resolver_return:
- gnu_ifunc_resolver_return_stop ((code_breakpoint *) b);
+ gnu_ifunc_resolver_return_stop
+ (gdb::checked_static_cast<code_breakpoint *> (b));
break;
}
}
@@ -1033,7 +1033,7 @@ elf_gnu_ifunc_resolver_return_stop (code_breakpoint *b)
"gnu-indirect-function breakpoint type %d"),
(int) b->type);
}
- b = (code_breakpoint *) b_next;
+ b = gdb::checked_static_cast<code_breakpoint *> (b_next);
}
gdb_assert (b->type == bp_gnu_ifunc_resolver);
gdb_assert (b->has_single_location ());