aboutsummaryrefslogtreecommitdiff
path: root/gdb/objfiles.c
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1992-08-11 05:29:41 +0000
committerFred Fish <fnf@specifix.com>1992-08-11 05:29:41 +0000
commita679650f372dfeb7358266ab7cc56e1f7df489eb (patch)
treee2ec12856512e3ce7a48940c5d9575452c1f58da /gdb/objfiles.c
parentbec66218fc001d5432630c0c743f22f387b16e41 (diff)
downloadgdb-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.c3
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)