Re: [C++ Patch] PR 58448

2013-10-08 Thread Paolo Carlini
On 10/04/2013 02:04 PM, Paolo Carlini wrote: ... and this is a more straightforward approach. Also tested x86_64-linux. I reverted this for now. Was causing problems (c++/58665). Thanks, Paolo.

Re: [C++ Patch] PR 58448

2013-10-04 Thread Jason Merrill
OK. Jason

Re: [C++ Patch] PR 58448

2013-10-04 Thread Paolo Carlini
... and this is a more straightforward approach. Also tested x86_64-linux. Thanks! Paolo. / /cp 2013-10-04 Paolo Carlini PR c++/58448 * pt.c (tsubst): Use error_operand_p on parameter t. /testsuite 2013-10-04 Paolo Carlini PR c++/58448

[C++ Patch] PR 58448

2013-09-17 Thread Paolo Carlini
Hi, this ICE is caused by error_mark_node as TREE_TYPE of a TYPE_DECL, which leads to a crash at the beginning of the TYPE_DECL case of tsubst_decl. I tried various approaches - for example turning all error_operand_p (t) == true arguments passes to tsubst into error_mark_nodes also works -