Re: [PATCH] tree-optimization/33315 - common stores during sinking

2020-05-14 Thread Richard Biener
On Wed, 13 May 2020, Martin Sebor wrote: > On 5/13/20 2:20 AM, Richard Biener wrote: > > > > This implements commoning of stores to a common successor in > > a simple ad-hoc way. I've decided to put it into the code sinking > > pass since, well, it sinks stores. It's still separate since > > it

Re: [PATCH] tree-optimization/33315 - common stores during sinking

2020-05-13 Thread Martin Sebor via Gcc-patches
On 5/13/20 2:20 AM, Richard Biener wrote: This implements commoning of stores to a common successor in a simple ad-hoc way. I've decided to put it into the code sinking pass since, well, it sinks stores. It's still separate since it does not really sink code into less executed places. It's ad