Re: [PATCH 1/9] ipa-cp: Write transformation summaries of all functions

2022-12-12 Thread Jan Hubicka via Gcc-patches
> gcc/ChangeLog: > > 2022-11-25 Martin Jambor > > * ipa-prop.cc (useful_ipcp_transformation_info_p): New function. > (write_ipcp_transformation_info): Added a parameter, simplified > given that is known not to be NULL. > (ipcp_write_transformation_summaries): Write out

Re: [PATCH 1/9] ipa-cp: Write transformation summaries of all functions

2022-12-12 Thread Jan Hubicka via Gcc-patches
> -void > -write_ipcp_transformation_info (output_block *ob, cgraph_node *node) > +/* Return true if the IPA-CP transformation summary TS is non-NULL and > contains > + useful info. */ > +static bool > +useful_ipcp_transformation_info_p (ipcp_transformation *ts) > { > - int node_ref; > -

[PATCH 1/9] ipa-cp: Write transformation summaries of all functions

2022-12-12 Thread Martin Jambor
Hi, I'm re-posting patches which I have posted at the end of stage 1 but which have not passed review yet. I would really like to have at least this patch and the subsequent one accepted for GCC 13 so that PR 103227 is fixed ina way which does not sometimes leave unused parameters behind. The