diff options
author | Nick Clifton <nickc@redhat.com> | 2019-01-10 09:44:13 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2019-01-10 09:44:13 +0000 |
commit | 1910070b298052d7ca8e4024891465824588c1e9 (patch) | |
tree | 0ae052cbeef0f08143625488e06ba16634c2f2f7 /libiberty/cp-demangle.c | |
parent | b22a7c6ab6173fe4fa1352e14d00a234bbf50346 (diff) | |
download | gdb-1910070b298052d7ca8e4024891465824588c1e9.zip gdb-1910070b298052d7ca8e4024891465824588c1e9.tar.gz gdb-1910070b298052d7ca8e4024891465824588c1e9.tar.bz2 |
Sync libiberty sources with gcc master versions.
. * libiberty: Sync with gcc. Bring in:
2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
PR other/16615
* cp-demangle.c: Mechanically replace "can not" with "cannot".
* floatformat.c: Likewise.
* strerror.c: Likewise.
2018-12-22 Jason Merrill <jason@redhat.com>
Remove support for demangling GCC 2.x era mangling schemes.
* cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
internal_cplus_demangle, and all subroutines.
(libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
Lucid, ARM, HP, and EDG demangling styles.
(cplus_demangle): Remove 'work' variable. Don't call
internal_cplus_demangle.
include * Merge from GCC:
2018-12-22 Jason Merrill <jason@redhat.com>
* demangle.h: Remove support for ancient GNU (pre-3.0), Lucid,
ARM, HP, and EDG demangling styles.
Diffstat (limited to 'libiberty/cp-demangle.c')
-rw-r--r-- | libiberty/cp-demangle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index ddcd3be..4624cd5 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -6201,13 +6201,13 @@ cplus_demangle_init_info (const char *mangled, int options, size_t len, di->n = mangled; - /* We cannot need more components than twice the number of chars in + /* We can not need more components than twice the number of chars in the mangled string. Most components correspond directly to chars, but the ARGLIST types are exceptions. */ di->num_comps = 2 * len; di->next_comp = 0; - /* Similarly, we cannot need more substitutions than there are + /* Similarly, we can not need more substitutions than there are chars in the mangled string. */ di->num_subs = len; di->next_sub = 0; |