Re: [C++ PATCH] Handle VECTOR_CSTs in adjust_temp_type (PR c++/55573)

2012-12-06 Thread Jason Merrill
On 12/06/2012 02:16 AM, Jakub Jelinek wrote: With Marc's recent changes to fold vector CONSTRUCTORs into VECTOR_CSTs if possible, we now ICE in adjust_temp_type, because the type of VECTOR_CST is not SCALAR_TYPE_P. Either we can handle VECTOR_CSTs directly (in that case ignore_overflows is also

[C++ PATCH] Handle VECTOR_CSTs in adjust_temp_type (PR c++/55573)

2012-12-05 Thread Jakub Jelinek
Hi! With Marc's recent changes to fold vector CONSTRUCTORs into VECTOR_CSTs if possible, we now ICE in adjust_temp_type, because the type of VECTOR_CST is not SCALAR_TYPE_P. Either we can handle VECTOR_CSTs directly (in that case ignore_overflows is also called on each VECTOR_CST constant, but