summaryrefslogtreecommitdiff
path: root/include/demangle.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2018-12-11 11:59:53 +0000
committerNick Clifton <nickc@gcc.gnu.org>2018-12-11 11:59:53 +0000
commit921a4c30579525b8de71d8118a2d31fcd68dea32 (patch)
tree0762a3761e38ffc3236cdcdf4bc1a9cd5c143b9f /include/demangle.h
parent315fdae8f965045f86e966953f3c010a61072729 (diff)
downloadgcc-921a4c30579525b8de71d8118a2d31fcd68dea32.tar.gz
Fix a failure in the libiberty testsuite by increasing the demangle recursion limit to 2048.
PR 88409 * demangle.h (DEMANGLE_RECURSION_LIMIT): Increase to 2048. From-SVN: r267020
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 1e67fe2fb34..fadf7082c05 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.