On Tue, Jul 05, 2022 at 04:44:41PM -0400, Jason Merrill wrote: > On 7/4/22 11:50, Jakub Jelinek wrote: > > On Mon, Jun 27, 2022 at 06:31:18PM +0200, Jakub Jelinek via Gcc-patches > > wrote: > > > > > Hmm, why do we need to handle complex in the !preeval case? I'd think > > > > we > > > > want to preevaluate all complex values or components thereof. > > > > Because the late evaluation of the initializer could have touched > > > the destination, so we need to reevaluate it. > > > Same reason why we call get_or_insert_ctor_field again in the second > > > loop as we call it in the first loop. > > But preeval should always be true, so we'd never reach the new handling in > the if (!preeval) block. Certainly the new testcase doesn't exercise this > code.
Ah, you're right, in the complex case SCALAR_TYPE_P (type) has to be true because it is COMPLEX_TYPE and so preeval must be true. I'll rework the patch then. Jakub