Re: [PATCH] tree-optimization/105080 - make sure SCEV is available for ranger

2022-03-28 Thread Jakub Jelinek via Gcc-patches
On Mon, Mar 28, 2022 at 03:26:11PM +0200, Richard Biener wrote: > On Mon, 28 Mar 2022, Jakub Jelinek wrote: > > > On Mon, Mar 28, 2022 at 03:16:24PM +0200, Richard Biener wrote: > > > When doing format diagnostics at -O0 we should make sure to make > > > SCEV available to avoid false positives due

Re: [PATCH] tree-optimization/105080 - make sure SCEV is available for ranger

2022-03-28 Thread Richard Biener via Gcc-patches
On Mon, 28 Mar 2022, Richard Biener wrote: > On Mon, 28 Mar 2022, Jakub Jelinek wrote: > > > On Mon, Mar 28, 2022 at 03:16:24PM +0200, Richard Biener wrote: > > > When doing format diagnostics at -O0 we should make sure to make > > > SCEV available to avoid false positives due to ranges we otherw

Re: [PATCH] tree-optimization/105080 - make sure SCEV is available for ranger

2022-03-28 Thread Richard Biener via Gcc-patches
On Mon, 28 Mar 2022, Jakub Jelinek wrote: > On Mon, Mar 28, 2022 at 03:16:24PM +0200, Richard Biener wrote: > > When doing format diagnostics at -O0 we should make sure to make > > SCEV available to avoid false positives due to ranges we otherwise > > can trivially compute. > > > > Bootstrap and

Re: [PATCH] tree-optimization/105080 - make sure SCEV is available for ranger

2022-03-28 Thread Jakub Jelinek via Gcc-patches
On Mon, Mar 28, 2022 at 03:16:24PM +0200, Richard Biener wrote: > When doing format diagnostics at -O0 we should make sure to make > SCEV available to avoid false positives due to ranges we otherwise > can trivially compute. > > Bootstrap and regtest running on x86_64-unknown-linux-gnu. > > OK if

[PATCH] tree-optimization/105080 - make sure SCEV is available for ranger

2022-03-28 Thread Richard Biener via Gcc-patches
When doing format diagnostics at -O0 we should make sure to make SCEV available to avoid false positives due to ranges we otherwise can trivially compute. Bootstrap and regtest running on x86_64-unknown-linux-gnu. OK if that succeeds? Thanks, Richard. 2022-03-28 Richard Biener PR tr