diff options
author | Keith Seitz <keiths@redhat.com> | 2011-05-31 21:54:07 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2011-05-31 21:54:07 +0000 |
commit | 2b1dbab03d9b512f15900cb274f69214bd88d3bc (patch) | |
tree | 5585a8b827c7e5c67067a6d2e1e07c67572afb57 /gdb/linespec.c | |
parent | 0a5b1e09bf62fcbe776eb641640f802f64bb6169 (diff) | |
download | gdb-2b1dbab03d9b512f15900cb274f69214bd88d3bc.zip gdb-2b1dbab03d9b512f15900cb274f69214bd88d3bc.tar.gz gdb-2b1dbab03d9b512f15900cb274f69214bd88d3bc.tar.bz2 |
PR symtab/12704
* cp-namespace.c (ANONYMOUS_NAMESPACE_LEN): Remove.
(cp_scan_for_anonymous_namespaces): Use CP_ANONYMOUS_NAMESPACE_STR
and CP_ANONYMOUS_NAMESPACE_LEN.
(cp_is_anonymous): Likewise.
* cp-support.h (CP_ANONYMOUS_NAMESPACE_STR): Define.
(CP_ANONYMOUS_NAMESPACE_LEN): Define.
* dwarf2read.c (namespace_name): Likewise.
(fixup_partial_die): Likewise.
* linespec.c (decode_compound): If CP_ANONYMOUS_NAMESPACE_STR is
seen in the input, keep it.
Diffstat (limited to 'gdb/linespec.c')
-rw-r--r-- | gdb/linespec.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gdb/linespec.c b/gdb/linespec.c index dcb80ff..8ee721b 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -1430,8 +1430,15 @@ decode_compound (char **argptr, int funfirstline, { /* PASS2: We'll keep getting here, until P points to one of the break characters, at which point we exit this loop. */ - if (*p && strchr (break_characters, *p) == NULL) - p++; + if (*p) + { + if (p[1] == '(' + && strncmp (&p[1], CP_ANONYMOUS_NAMESPACE_STR, + CP_ANONYMOUS_NAMESPACE_LEN) == 0) + p += CP_ANONYMOUS_NAMESPACE_LEN; + else if (strchr (break_characters, *p) == NULL) + ++p; + } } } |