Re: [PATCH] middle-end/108500 - replace recursive domtree DFS traversal

2023-01-31 Thread Richard Biener via Gcc-patches
> Am 31.01.2023 um 16:59 schrieb Jakub Jelinek via Gcc-patches > : > > On Tue, Jan 31, 2023 at 03:45:43PM +0100, Richard Biener wrote: >> The following replaces the recursive DFS traversal of the dominator >> tree in assign_dfs_numbers with a tree traversal using the fact >> that we have reco

Re: [PATCH] middle-end/108500 - replace recursive domtree DFS traversal

2023-01-31 Thread Jakub Jelinek via Gcc-patches
On Tue, Jan 31, 2023 at 03:45:43PM +0100, Richard Biener wrote: > The following replaces the recursive DFS traversal of the dominator > tree in assign_dfs_numbers with a tree traversal using the fact > that we have recorded parents. > > Bootstrapped and tested on x86_64-unknown-linux-gnu. > > Thi