diff options
author | Jason Merrill <jason@redhat.com> | 2005-02-13 06:58:55 +0000 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2005-02-13 06:58:55 +0000 |
commit | aca9a742412283942e03eab72a639414dc191e1d (patch) | |
tree | 4d8aa854529304062e6a0b1d31d07b87306e5e4c /libiberty/cp-demangle.c | |
parent | eed51203841011a8d8d8aa437c54b85e79a60513 (diff) | |
download | gdb-aca9a742412283942e03eab72a639414dc191e1d.zip gdb-aca9a742412283942e03eab72a639414dc191e1d.tar.gz gdb-aca9a742412283942e03eab72a639414dc191e1d.tar.bz2 |
* cp-demangle.c (__cxa_demangle): Change resolution of ambiguous
arguments.
Diffstat (limited to 'libiberty/cp-demangle.c')
-rw-r--r-- | libiberty/cp-demangle.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index 5707aa2..c4436d7 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -4047,21 +4047,6 @@ __cxa_demangle (mangled_name, output_buffer, length, status) return NULL; } - /* The specification for __cxa_demangle() is that if the mangled - name could be either an extern "C" identifier, or an internal - built-in type name, then we resolve it as the identifier. All - internal built-in type names are a single lower case character. - Frankly, this simplistic disambiguation doesn't make sense to me, - but it is documented, so we implement it here. */ - if (IS_LOWER (mangled_name[0]) - && mangled_name[1] == '\0' - && cplus_demangle_builtin_types[mangled_name[0] - 'a'].name != NULL) - { - if (status != NULL) - *status = -2; - return NULL; - } - demangled = d_demangle (mangled_name, DMGL_PARAMS | DMGL_TYPES, &alc); if (demangled == NULL) |