diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-06-18 21:36:16 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-06-18 21:36:16 +0000 |
commit | 782263ab3ac9ffeed8ac469a906f898668212b6c (patch) | |
tree | dbe450bc10d307f145e811314c4b9ca18bd7230b /gdb/infrun.c | |
parent | b2d38a17cf625ae652ea4104a73be007176d98b0 (diff) | |
download | gdb-782263ab3ac9ffeed8ac469a906f898668212b6c.zip gdb-782263ab3ac9ffeed8ac469a906f898668212b6c.tar.gz gdb-782263ab3ac9ffeed8ac469a906f898668212b6c.tar.bz2 |
2004-06-18 Andrew Cagney <cagney@gnu.org>
* gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c (ada_finish_decode_line_1): Update.
* infrun.c (handle_inferior_event): Update.
* infcall.c (find_function_addr): Update.
* linespec.c (minsym_found): Update.
* symtab.c (find_function_start_sal, skip_prologue_using_sal):
Update.
* blockframe.c (legacy_frameless_look_for_prologue): Update.
* cli/cli-cmds.c (disassemble_command): Update.
* vax-tdep.c (vax_gdbarch_init): Update.
Index: doc/ChangeLog
2004-06-18 Andrew Cagney <cagney@gnu.org>
* gdbint.texinfo (Target Architecture Definition): Deprecate
FUNCTION_START_OFFSET.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 8aba9c1..4581646 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -1817,7 +1817,7 @@ handle_inferior_event (struct execution_control_state *ecs) will both be 0 if it doesn't work. */ find_pc_partial_function (stop_pc, &ecs->stop_func_name, &ecs->stop_func_start, &ecs->stop_func_end); - ecs->stop_func_start += FUNCTION_START_OFFSET; + ecs->stop_func_start += DEPRECATED_FUNCTION_START_OFFSET; ecs->another_trap = 0; bpstat_clear (&stop_bpstat); stop_step = 0; |