On Wed, Aug 4, 2021 at 12:27 AM Richard Sandiford wrote: > > "H.J. Lu via Gcc-patches" writes: > > @@ -1122,8 +1122,8 @@ class op_by_pieces_d > > and its associated FROM_CFN_DATA can be used to replace loads with > > constant values. LEN describes the length of the operation. */ > > > > -op_by_pieces_d::op_by_pieces_d (rtx to, bool to_load, > > - rtx from, bool from_load, > > +op_by_pieces_d::op_by_pieces_d (unsigned int max_pieces, rtx to, > > + bool to_load, rtx from, bool from_load, > > by_pieces_constfn from_cfn, > > void *from_cfn_data, > > unsigned HOST_WIDE_INT len, > > The comment above the function needs to describe the new parameter. > > OK with that change, thanks. > This is the patch I am checking in. Thanks. --- H.J.