Re: [PATCH] Replace conditional_replacement with match and simplify

2021-06-02 Thread Andrew Pinski via Gcc-patches
On Wed, Jun 2, 2021 at 2:12 AM Andrew Pinski wrote: > > On Wed, Jun 2, 2021 at 1:37 AM Christophe Lyon via Gcc-patches > wrote: > > > > On Tue, 1 Jun 2021 at 08:06, apinski--- via Gcc-patches > > wrote: > > > > > > From: Andrew Pinski > > > > > > This is the first of series of patches to simpli

Re: [PATCH] Replace conditional_replacement with match and simplify

2021-06-02 Thread Andrew Pinski via Gcc-patches
On Wed, Jun 2, 2021 at 1:37 AM Christophe Lyon via Gcc-patches wrote: > > On Tue, 1 Jun 2021 at 08:06, apinski--- via Gcc-patches > wrote: > > > > From: Andrew Pinski > > > > This is the first of series of patches to simplify phi-opt > > to use match and simplify in many cases. This simplificat

Re: [PATCH] Replace conditional_replacement with match and simplify

2021-06-02 Thread Christophe Lyon via Gcc-patches
On Tue, 1 Jun 2021 at 08:06, apinski--- via Gcc-patches wrote: > > From: Andrew Pinski > > This is the first of series of patches to simplify phi-opt > to use match and simplify in many cases. This simplification > will more things to optimize. > > This is what Richard requested in > https://gcc

Re: [PATCH] Replace conditional_replacement with match and simplify

2021-06-01 Thread Richard Biener via Gcc-patches
On Tue, Jun 1, 2021 at 8:06 AM apinski--- via Gcc-patches wrote: > > From: Andrew Pinski > > This is the first of series of patches to simplify phi-opt > to use match and simplify in many cases. This simplification > will more things to optimize. > > This is what Richard requested in > https://g

[PATCH] Replace conditional_replacement with match and simplify

2021-05-31 Thread apinski--- via Gcc-patches
From: Andrew Pinski This is the first of series of patches to simplify phi-opt to use match and simplify in many cases. This simplification will more things to optimize. This is what Richard requested in https://gcc.gnu.org/pipermail/gcc-patches/2021-May/571197.html and I think it is the right