summaryrefslogtreecommitdiff
path: root/gdb/source.c
diff options
context:
space:
mode:
authorLuis Machado <luisgpm@br.ibm.com>2008-06-30 13:52:07 +0000
committerLuis Machado <luisgpm@br.ibm.com>2008-06-30 13:52:07 +0000
commitc132c6a2892e2f040d5272d008afe3fc8afc2af3 (patch)
tree4841861a4d38cf1e5fa62404a4498a4e7536e850 /gdb/source.c
parente58d891ab6cd879e0dbf1c1b37dbd5807bf1efa8 (diff)
downloadgdb-c132c6a2892e2f040d5272d008afe3fc8afc2af3.tar.gz
* source.c (select_source_symtab): Make sure we skip namespace
symtabs when showing cpp source code.
Diffstat (limited to 'gdb/source.c')
-rw-r--r--gdb/source.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/gdb/source.c b/gdb/source.c
index fc5fe0b0f16..e0ae0b179fd 100644
--- a/gdb/source.c
+++ b/gdb/source.c
@@ -250,7 +250,8 @@ select_source_symtab (struct symtab *s)
return;
}
- /* All right; find the last file in the symtab list (ignoring .h's). */
+ /* Alright; find the last file in the symtab list (ignoring .h's
+ and namespace symtabs). */
current_source_line = 1;
@@ -260,14 +261,15 @@ select_source_symtab (struct symtab *s)
{
const char *name = s->filename;
int len = strlen (name);
- if (!(len > 2 && strcmp(&name[len - 2], ".h") == 0))
+ if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
+ || strcmp (name, "<<C++-namespaces>>") == 0)))
current_source_symtab = s;
}
}
if (current_source_symtab)
return;
- /* Howabout the partial symbol tables? */
+ /* How about the partial symbol tables? */
for (ofp = object_files; ofp != NULL; ofp = ofp->next)
{
@@ -275,7 +277,8 @@ select_source_symtab (struct symtab *s)
{
const char *name = ps->filename;
int len = strlen (name);
- if (!(len > 2 && strcmp (&name[len - 2], ".h") == 0))
+ if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
+ || strcmp (name, "<<C++-namespaces>>") == 0)))
cs_pst = ps;
}
}