diff options
| author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 14:56:50 +0000 |
|---|---|---|
| committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 14:56:50 +0000 |
| commit | a1b161e052b1243cfc2ec135dde92d8d2e26c671 (patch) | |
| tree | d9259cefb329c62614091ab7a7213410fda8a62e | |
| parent | d426ca3f112cdf1ca6e0e52aa90716d8e04c3426 (diff) | |
| download | ppe42-gcc-a1b161e052b1243cfc2ec135dde92d8d2e26c671.tar.gz ppe42-gcc-a1b161e052b1243cfc2ec135dde92d8d2e26c671.zip | |
* decl2.c (max_tinst_depth): Increase default limit to 500.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48727 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/cp/decl2.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b4cc6343876..10e84b49d77 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,4 +1,8 @@ -2002-01-20 Graham Stott <grahams@redhat.com> +2002-01-10 Jakub Jelinek <jakub@redhat.com> + + * decl2.c (max_tinst_depth): Increase default limit to 500. + +2002-01-10 Graham Stott <grahams@redhat.com> * spew.c (YYCHAR): Uppercase macro parameter and add parenthesis. diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index efc1abd2be4..c384f86ccfc 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -382,7 +382,7 @@ int flag_use_cxa_atexit; arbitrary, but it exists to limit the time it takes to notice infinite template instantiations. */ -int max_tinst_depth = 50; +int max_tinst_depth = 500; /* Nonzero means output .vtable_{entry,inherit} for use in doing vtable gc. */ |

