Re: [PATCH 3/3] phiprop: VOP phi confuses phiprop [PR116824]

2024-10-06 Thread Andrew Pinski
On Wed, Sep 25, 2024 at 1:38 AM Richard Biener wrote: > > On Tue, Sep 24, 2024 at 6:14 PM Andrew Pinski > wrote: > > > > Another small phiprop improvement, in some cases > > we could have a vop defining statement be a phi which might > > be the same bb as the load happens. This is ok since the p

Re: [PATCH 3/3] phiprop: VOP phi confuses phiprop [PR116824]

2024-09-25 Thread Richard Biener
On Tue, Sep 24, 2024 at 6:14 PM Andrew Pinski wrote: > > Another small phiprop improvement, in some cases > we could have a vop defining statement be a phi which might > be the same bb as the load happens. This is ok since the phi > here is not a store so we can just accept it. > > Bootstrapped an

[PATCH 3/3] phiprop: VOP phi confuses phiprop [PR116824]

2024-09-24 Thread Andrew Pinski
Another small phiprop improvement, in some cases we could have a vop defining statement be a phi which might be the same bb as the load happens. This is ok since the phi here is not a store so we can just accept it. Bootstrapped and tested on x86_64-linux-gnu. PR tree-optimization/116824