* testsuite/demangle-expected: Add two tests for anonymous
authorHans-Peter Nilsson <hp@axis.com>
Wed, 13 Sep 2000 22:59:40 +0000 (22:59 +0000)
committerHans-Peter Nilsson <hp@axis.com>
Wed, 13 Sep 2000 22:59:40 +0000 (22:59 +0000)
namespaces.
* cplus-dem.c (gnu_special): Handle anonymous namespaces.

libiberty/ChangeLog
libiberty/cplus-dem.c
libiberty/testsuite/demangle-expected

index 27de2ac80c0ec49ba0fbbce7189cd5af2a663911..a415366f59cb3bbf9bc1c56238b2741c4ab604a0 100644 (file)
@@ -1,8 +1,13 @@
+2000-09-14  Hans-Peter Nilsson  <hp@axis.com>
+
+       * testsuite/demangle-expected: Add two tests for anonymous
+       namespaces.
+       * cplus-dem.c (gnu_special): Handle anonymous namespaces.
+
 2000-09-10  Hans-Peter Nilsson  <hp@axis.com>
 
        * testsuite/demangle-expected: Add four tests for type_info
        mangling.
-
        * cplus-dem.c (gnu_special): Use do_type, not demangle_fund_type,
        for a non-template non-qualified type_info function or node.
 
index da951331d55498e361c354dccecec1627cb30489..8a672c684b1564a67d8a4072807abd709cfdd710 100644 (file)
@@ -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;
        }
index fb6448cffdfad711664829a60aa941e9e674bb51..a5d72fab0fe6b9a01f896f35d3c21f010cbc68e3 100644 (file)
@@ -2558,3 +2558,11 @@ sockaddr * type_info node
 --format=gnu
 __tiPQ25libcwt16option_event_tct1Z12burst_app_ct
 libcw::option_event_tct<burst_app_ct> * type_info node
+#
+--format=gnu
+_27_GLOBAL_.N.__12burst_app_ct.app_instance
+{anonymous}::app_instance
+#
+--format=gnu
+_26_GLOBAL_\$N\$_tmp_n.iilg4Gya\$app_instance
+{anonymous}::app_instance
This page took 0.04194 seconds and 4 git commands to generate.