Is there a way to get a function's end address other than `disassemble`?
Simon Sobisch via Gdb <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
`info address func_name` will show the *start address* of the given
function, but is there any built-in way to get the *end address* other
than executing the `disassemble` command?
The use case here is "if the size of the current function is too big,
don't use `disassemble` but limit to N instructions around $pc";
using a fixed calculation like
disassemble $pc - 50, $pc + 150
may get "over" the last instruction of the function...
Simon