Re: [PATCH] middle-end/119119 - re-gimplification of empty CTOR assignments

2025-03-06 Thread Jakub Jelinek
On Thu, Mar 06, 2025 at 09:50:33AM +0100, Richard Biener wrote: > The following testcase runs into a re-gimplification issue during > inlining when processing > > MEM[(struct e *)this_2(D)].a = {}; > > where re-gimplification does not handle assignments in the same > way than the gimplifier but

[PATCH] middle-end/119119 - re-gimplification of empty CTOR assignments

2025-03-06 Thread Richard Biener
The following testcase runs into a re-gimplification issue during inlining when processing MEM[(struct e *)this_2(D)].a = {}; where re-gimplification does not handle assignments in the same way than the gimplifier but instead relies on rhs_predicate_for and gimplifying the RHS standalone. This