aboutsummaryrefslogtreecommitdiff
path: root/include/demangle.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2018-12-11 12:01:15 +0000
committerNick Clifton <nickc@redhat.com>2018-12-11 12:01:15 +0000
commit69799d67e8872dcd3feee81ed2ff0fc47beb52d7 (patch)
treea6c32ecda1ae888a0d46ab28fcb1f59079a06b13 /include/demangle.h
parent99e1a184a791d30c09a86d6eca4528dc146c2c79 (diff)
downloadgdb-69799d67e8872dcd3feee81ed2ff0fc47beb52d7.zip
gdb-69799d67e8872dcd3feee81ed2ff0fc47beb52d7.tar.gz
gdb-69799d67e8872dcd3feee81ed2ff0fc47beb52d7.tar.bz2
Fix a failure in the libiberty testsuite by increasing the recursion limit to 2048.
PR 88409 include * demangle.h (DEMANGLE_RECURSION_LIMIT): Increase to 2048. binutils* NEWS: Note that recursion limit has increased to 2048. * doc/binutils.texi: Likewise.
Diffstat (limited to 'include/demangle.h')
-rw-r--r--include/demangle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/demangle.h b/include/demangle.h
index 1e67fe2..fadf708 100644
--- a/include/demangle.h
+++ b/include/demangle.h
@@ -77,7 +77,7 @@ extern "C" {
/* If DMGL_NO_RECURSE_LIMIT is not enabled, then this is the value used as
the maximum depth of recursion allowed. It should be enough for any
real-world mangled name. */
-#define DEMANGLE_RECURSION_LIMIT 1024
+#define DEMANGLE_RECURSION_LIMIT 2048
/* Enumeration of possible demangling styles.