aboutsummaryrefslogtreecommitdiff
path: root/gdb/nlmread.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-09-02 03:05:46 +0000
committerAndrew Cagney <cagney@redhat.com>2004-09-02 03:05:46 +0000
commit14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd (patch)
tree645e4efd732638382d98f147fe46d9b6589aaa1d /gdb/nlmread.c
parent21bd10f440450cc0067041f600645a155f2ab6dc (diff)
downloadfsf-binutils-gdb-14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd.zip
fsf-binutils-gdb-14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd.tar.gz
fsf-binutils-gdb-14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd.tar.bz2
2004-09-01 Andrew Cagney <cagney@gnu.org>
* objfiles.h (struct entry_info): Delete fields main_func_lowpc and main_func_highpc. (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros. * objfiles.c (init_entry_point_info, objfile_relocate): Update * nlmread.c (nlm_symfile_read): Update.
Diffstat (limited to 'gdb/nlmread.c')
-rw-r--r--gdb/nlmread.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/nlmread.c b/gdb/nlmread.c
index e75486e..b2a6a35 100644
--- a/gdb/nlmread.c
+++ b/gdb/nlmread.c
@@ -177,7 +177,6 @@ nlm_symfile_read (struct objfile *objfile, int mainline)
bfd *abfd = objfile->obfd;
struct cleanup *back_to;
CORE_ADDR offset;
- struct symbol *mainsym;
init_minimal_symbol_collection ();
back_to = make_cleanup_discard_minimal_symbols ();
@@ -199,16 +198,6 @@ nlm_symfile_read (struct objfile *objfile, int mainline)
stabsect_build_psymtabs (objfile, mainline, ".stab",
".stabstr", ".text");
-
- mainsym = lookup_symbol (main_name (), NULL, VAR_DOMAIN, NULL, NULL);
-
- if (mainsym
- && SYMBOL_CLASS (mainsym) == LOC_BLOCK)
- {
- objfile->ei.main_func_lowpc = BLOCK_START (SYMBOL_BLOCK_VALUE (mainsym));
- objfile->ei.main_func_highpc = BLOCK_END (SYMBOL_BLOCK_VALUE (mainsym));
- }
-
/* FIXME: We could locate and read the optional native debugging format
here and add the symbols to the minimal symbol table. */
}