Kamlesh Kumar <kamleshbha...@gmail.com> writes: > thanks Richard, > > addressed your concern. > > diff --git a/gcc/rtl.h b/gcc/rtl.h > index 0872cc4..7206c8a 100644 > --- a/gcc/rtl.h > +++ b/gcc/rtl.h > @@ -2238,6 +2238,16 @@ struct address_info { > enum rtx_code base_outer_code; > }; > > +/* This is used for passing args in emit_library_* functions */ > +struct libcall_arg { > + rtx value; > + machine_mode mode; > + bool unsigned_p; > + constexpr > + libcall_arg (rtx v, machine_mode m, bool u) : value(v), mode(m), > + unsigned_p(u) {}
Think this should be formatted with the ":" on the next line. There should also be spaces before each "(": constexpr libcall_arg (rtx v, machine_mode m, bool u) : value (v), mode (m), unsigned_p (u) {} Looks good otherwise, thanks, but please only apply at the same time as the patch that needs it. Richard