From 51cc5b073771099289e43e0d4a15f71fb0515f0b Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Sat, 7 Jul 2001 17:19:50 +0000 Subject: * symtab.c (main_name): New function. (set_main_name): New function. * symtab.h: Declare. * TODO: Update From 2000-03-05 Anthony Green : * dbxread.c (process_one_symbol): Handle the N_MAIN stab by setting main_name. * blockframe.c (inside_main_func): Use main_name instead of "main". * symtab.c (find_main_psymtab): Ditto. * source.c (select_source_symtab): Ditto. * nlmread.c (nlm_symfile_read): Ditto. * rs6000-tdep.c (skip_prologue): Ditto. --- gdb/source.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/source.c') diff --git a/gdb/source.c b/gdb/source.c index 2895dd3..417d588 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -153,9 +153,9 @@ select_source_symtab (register struct symtab *s) /* Make the default place to list be the function `main' if one exists. */ - if (lookup_symbol ("main", 0, VAR_NAMESPACE, 0, NULL)) + if (lookup_symbol (main_name (), 0, VAR_NAMESPACE, 0, NULL)) { - sals = decode_line_spec ("main", 1); + sals = decode_line_spec (main_name (), 1); sal = sals.sals[0]; xfree (sals.sals); current_source_symtab = sal.symtab; -- cgit v1.1