diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-09-13 22:59:40 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2000-09-13 22:59:40 +0000 |
commit | d3e8500506c29c035b8f35c09019b6736f556acd (patch) | |
tree | e766eb9a849f5ce03c3a0e4d1a9fc7af799c5419 /libiberty/cplus-dem.c | |
parent | 064002de2b47fd7dc86feefc50dd489ca110cff0 (diff) | |
download | gdb-d3e8500506c29c035b8f35c09019b6736f556acd.zip gdb-d3e8500506c29c035b8f35c09019b6736f556acd.tar.gz gdb-d3e8500506c29c035b8f35c09019b6736f556acd.tar.bz2 |
* testsuite/demangle-expected: Add two tests for anonymous
namespaces.
* cplus-dem.c (gnu_special): Handle anonymous namespaces.
Diffstat (limited to 'libiberty/cplus-dem.c')
-rw-r--r-- | libiberty/cplus-dem.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index da95133..8a672c6 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -2812,6 +2812,25 @@ gnu_special (work, mangled, declp) success = 0; break; } + + if (n > 10 && strncmp (*mangled, "_GLOBAL_", 8) == 0 + && (*mangled)[9] == 'N' + && (*mangled)[8] == (*mangled)[10] + && strchr (cplus_markers, (*mangled)[8])) + { + /* A member of the anonymous namespace. There's information + about what identifier or filename it was keyed to, but + it's just there to make the mangled name unique; we just + step over it. */ + string_append (declp, "{anonymous}"); + (*mangled) += n; + + /* Now p points to the marker before the N, so we need to + update it to the first marker after what we consumed. */ + p = strpbrk (*mangled, cplus_markers); + break; + } + string_appendn (declp, *mangled, n); (*mangled) += n; } |