diff options
author | Fred Fish <fnf@specifix.com> | 1992-08-11 05:29:41 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-08-11 05:29:41 +0000 |
commit | a679650f372dfeb7358266ab7cc56e1f7df489eb (patch) | |
tree | e2ec12856512e3ce7a48940c5d9575452c1f58da /gdb/objfiles.c | |
parent | bec66218fc001d5432630c0c743f22f387b16e41 (diff) | |
download | gdb-a679650f372dfeb7358266ab7cc56e1f7df489eb.zip gdb-a679650f372dfeb7358266ab7cc56e1f7df489eb.tar.gz gdb-a679650f372dfeb7358266ab7cc56e1f7df489eb.tar.bz2 |
* Makefile.in (VERSION): Bump to 4.6.3.
* dwarfread.c (scan_partial_symbols): Skip over DIE's within
function scopes when building partial symbol tables.
* objfiles.c (open_existing_mapped_file): Make it clear in
warning message that out of date mapped files are ignored.
* symtab.c (lookup_symtab_1, lookup_symbol): Print compilation
unit source file name in error message.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 4dae610..278aa44 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -435,7 +435,8 @@ open_existing_mapped_file (symsfilename, mtime, mapped) { if (!mapped) { - warning ("mapped symbol file `%s' is out of date", symsfilename); + warning ("mapped symbol file `%s' is out of date, ignored it", + symsfilename); } } else if ((fd = open (symsfilename, O_RDWR)) < 0) |