* c-common.c (max_tinst_depth): Increase default to 1024.

From-SVN: r149867
This commit is contained in:
Jason Merrill 2009-07-21 17:03:25 -04:00 committed by Jason Merrill
parent 4310f048df
commit 4afe7ad7fb
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2009-07-21 Jason Merrill <jason@redhat.com>
* c-common.c (max_tinst_depth): Increase default to 1024.
2009-07-21 Uros Bizjak <ubizjak@gmail.com> 2009-07-21 Uros Bizjak <ubizjak@gmail.com>
* config/i386/sse.md (vec_unpacku_float_hi_v4si): New expander. * config/i386/sse.md (vec_unpacku_float_hi_v4si): New expander.

View File

@ -428,11 +428,11 @@ int flag_pretty_templates = 1;
int warn_implicit = 1; int warn_implicit = 1;
/* Maximum template instantiation depth. This limit is rather /* Maximum template instantiation depth. This limit exists to limit the
arbitrary, but it exists to limit the time it takes to notice time it takes to notice infinite template instantiations; the default
infinite template instantiations. */ value of 1024 is likely to be in the next C++ standard. */
int max_tinst_depth = 500; int max_tinst_depth = 1024;