diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-07 17:19:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-07 17:19:50 +0000 |
commit | 51cc5b073771099289e43e0d4a15f71fb0515f0b (patch) | |
tree | 8d4feb1344264b42785f9edf0e4c330a9380f427 /gdb/source.c | |
parent | c72e73889f2075d648af94c52687d306befd8fbf (diff) | |
download | gdb-51cc5b073771099289e43e0d4a15f71fb0515f0b.zip gdb-51cc5b073771099289e43e0d4a15f71fb0515f0b.tar.gz gdb-51cc5b073771099289e43e0d4a15f71fb0515f0b.tar.bz2 |
* symtab.c (main_name): New function.
(set_main_name): New function.
* symtab.h: Declare.
* TODO: Update
From 2000-03-05 Anthony Green <green@redhat.com>:
* 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.
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |