diff options
author | Nick Clifton <nickc@redhat.com> | 2018-12-11 11:59:53 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2018-12-11 11:59:53 +0000 |
commit | 921a4c30579525b8de71d8118a2d31fcd68dea32 (patch) | |
tree | 0762a3761e38ffc3236cdcdf4bc1a9cd5c143b9f /include/demangle.h | |
parent | 315fdae8f965045f86e966953f3c010a61072729 (diff) | |
download | gcc-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.h | 2 |
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. |