On Tue, Sep 20, 2022 at 07:22:03AM +0200, Aldy Hernandez wrote:
> > > Jakub actually suggested something completely different...just set +0
> > > always for !HONOR_SIGNED_ZEROS.
> >
> > Hmm, but the [-1, -0.] with known sign becomes [-1, +0.] with unknown sign?
>
> Huh. I guess that's true. Does
On Mon, Sep 19, 2022 at 3:45 PM Richard Biener
wrote:
>
> On Mon, Sep 19, 2022 at 3:04 PM Aldy Hernandez wrote:
> >
> > On Mon, Sep 19, 2022 at 9:37 AM Richard Biener
> > wrote:
> > >
> > > On Sat, Sep 17, 2022 at 10:25 AM Aldy Hernandez via Gcc-patches
> > > wrote:
> > > >
> > > > Jakub has me
On Mon, Sep 19, 2022 at 3:04 PM Aldy Hernandez wrote:
>
> On Mon, Sep 19, 2022 at 9:37 AM Richard Biener
> wrote:
> >
> > On Sat, Sep 17, 2022 at 10:25 AM Aldy Hernandez via Gcc-patches
> > wrote:
> > >
> > > Jakub has mentioned that for -funsafe-math-optimizations we may flush
> > > denormals t
On Mon, Sep 19, 2022 at 3:04 PM Aldy Hernandez wrote:
>
> On Mon, Sep 19, 2022 at 9:37 AM Richard Biener
> wrote:
> >
> > On Sat, Sep 17, 2022 at 10:25 AM Aldy Hernandez via Gcc-patches
> > wrote:
> > >
> > > Jakub has mentioned that for -funsafe-math-optimizations we may flush
> > > denormals t
On Mon, Sep 19, 2022 at 9:37 AM Richard Biener
wrote:
>
> On Sat, Sep 17, 2022 at 10:25 AM Aldy Hernandez via Gcc-patches
> wrote:
> >
> > Jakub has mentioned that for -funsafe-math-optimizations we may flush
> > denormals to zero, in which case we need to be careful to extend the
> > ranges to t
On Mon, Sep 19, 2022 at 09:37:22AM +0200, Richard Biener wrote:
> On Sat, Sep 17, 2022 at 10:25 AM Aldy Hernandez via Gcc-patches
> wrote:
> >
> > Jakub has mentioned that for -funsafe-math-optimizations we may flush
> > denormals to zero, in which case we need to be careful to extend the
> > rang
On Sat, Sep 17, 2022 at 10:25 AM Aldy Hernandez via Gcc-patches
wrote:
>
> Jakub has mentioned that for -funsafe-math-optimizations we may flush
> denormals to zero, in which case we need to be careful to extend the
> ranges to the appropriate zero. This patch does exactly that. For a
> range of
Jakub has mentioned that for -funsafe-math-optimizations we may flush
denormals to zero, in which case we need to be careful to extend the
ranges to the appropriate zero. This patch does exactly that. For a
range of [x, -DENORMAL] we flush to [x, -0.0] and for [+DENORMAL, x]
we flush to [+0.0, x]