2004-05-07 Andrew Cagney <cagney@redhat.com>

* objfiles.h (struct entry_info): Delete unused fields
	deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
	* objfiles.c (init_entry_point_info, objfile_relocate): Update.
	* mipsread.c (mipscoff_symfile_read): Update.
	* mdebugread.c (parse_partial_symbols): Update.
	* dwarfread.c (read_file_scope): Update.
	* dwarf2read.c (read_file_scope): Update.
	* dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
	* coffread.c (complete_symtab): Update.
This commit is contained in:
Andrew Cagney
2004-05-07 14:29:34 +00:00
parent 1d3056ac0d
commit 73c1e0a129
9 changed files with 14 additions and 79 deletions

View File

@ -44,9 +44,8 @@ struct objfile_data;
to the user executable's recorded entry point, as if the call had been made
directly by the kernel.
The traditional gdb method of using this info is to use the
recorded entry point to set the variables
deprecated_entry_file_lowpc and deprecated_entry_file_highpc from
The traditional gdb method of using this info was to use the
recorded entry point to set the entry-file's lowpc and highpc from
the debugging information, where these values are the starting
address (inclusive) and ending address (exclusive) of the
instruction space in the executable which correspond to the
@ -117,12 +116,6 @@ struct entry_info
CORE_ADDR entry_func_lowpc;
CORE_ADDR entry_func_highpc;
/* Start (inclusive) and end (exclusive) of object file containing the
entry point. */
CORE_ADDR deprecated_entry_file_lowpc;
CORE_ADDR deprecated_entry_file_highpc;
/* Start (inclusive) and end (exclusive) of the user code main() function. */
CORE_ADDR main_func_lowpc;