This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/53845] Another "error reporting routines re-entered" issue
- From: "xinliangli at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 13 Jul 2012 00:10:07 +0000
- Subject: [Bug c++/53845] Another "error reporting routines re-entered" issue
- Auto-submitted: auto-generated
- References: <bug-53845-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53845
davidxl <xinliangli at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |xinliangli at gmail dot com
--- Comment #2 from davidxl <xinliangli at gmail dot com> 2012-07-13 00:10:07 UTC ---
(In reply to comment #1)
> push_tinst_level tries to error out even when called (during diagnostics) by a
> deduction_tsubst_fntype which is passed a complain not including tf_error.
Similar ICE can also be triggered in many cases with -fdump-tree-all option.
The dumper tries to print template parameters which triggers template
instantiation (odd). The instantiation may fail for unknown reason causing the
ICE.
David