Re: [PATCH] middle-end/112830 - avoid gimplifying non-default addr-space assign to memcpy

2023-12-05 Thread Jakub Jelinek
On Tue, Dec 05, 2023 at 02:11:27PM +0100, Richard Biener wrote: > The following avoids turning aggregate copy involving non-default > address-spaces to memcpy since that is not prepared for that. > > GIMPLE verification no longer accepts WITH_SIZE_EXPR in aggregate > copies, the following

[PATCH] middle-end/112830 - avoid gimplifying non-default addr-space assign to memcpy

2023-12-05 Thread Richard Biener
The following avoids turning aggregate copy involving non-default address-spaces to memcpy since that is not prepared for that. GIMPLE verification no longer accepts WITH_SIZE_EXPR in aggregate copies, the following re-allows that for the RHS. I also needed to adjust one assert in DCE.