Re: [PATCH] Adjust tree-ssa-dom.c for irange API.

2020-08-24 Thread Jeff Law via Gcc-patches
On Tue, 2020-08-04 at 13:39 +0200, Aldy Hernandez wrote: > This patch removes all uses of VR_ANTI_RANGE in DOM. It required > minor surgery in the switch handling code. > > In doing so, I was able to abstract all the code handling the cases > with ranges into its own function. Interestingly,

PING: Fwd: [PATCH] Adjust tree-ssa-dom.c for irange API.

2020-08-11 Thread Aldy Hernandez via Gcc-patches
-- Forwarded message - From: Aldy Hernandez Date: Tue, Aug 4, 2020, 13:39 Subject: [PATCH] Adjust tree-ssa-dom.c for irange API. To: Cc: , Aldy Hernandez This patch removes all uses of VR_ANTI_RANGE in DOM. It required minor surgery in the switch handling code. In doing so

[PATCH] Adjust tree-ssa-dom.c for irange API.

2020-08-04 Thread Aldy Hernandez via Gcc-patches
This patch removes all uses of VR_ANTI_RANGE in DOM. It required minor surgery in the switch handling code. In doing so, I was able to abstract all the code handling the cases with ranges into its own function. Interestingly, there is an exact copy of this function in VRP, so I was able to use