On Mon, Nov 14, 2022 at 8:59 AM Philipp Tomsich wrote: > On Mon, 14 Nov 2022 at 03:48, Vineet Gupta wrote: > > > > > > > > On 11/13/22 15:05, Christoph Muellner wrote: > > > > > > +static bool > > > +riscv_overlap_op_by_pieces (void) > > > +{ > > > + return tune_param->overlap_op_by_pieces; > > > > Does this not need to be gated on unaligned access enabled as well. > > I assume you mean "&& !STRICT_ALIGNMENT"? > I think the case that slow_unaligned_access and overlap_op_by_pieces will both be set will not occur (we can defer the discussion about that until then). Gating overlap_op_by_pieces with !TARGET_STRICT_ALIGN is a good idea. It will be fixed for a v2. Thanks, Christoph > > Philipp. >