Re: [PATCH 6/7] Lower for loops before lowering cond in genmatch

2021-06-24 Thread Jeff Law via Gcc-patches
On 6/23/2021 4:19 PM, apinski--- via Gcc-patches wrote: From: Andrew Pinski While converting some fold_cond_expr_with_comparison to match, I found that I wanted to use "for cnd (cond vec_cond)" but that was not causing the lowering of cond to happen. What was happening was the lowering of th

[PATCH 6/7] Lower for loops before lowering cond in genmatch

2021-06-23 Thread apinski--- via Gcc-patches
From: Andrew Pinski While converting some fold_cond_expr_with_comparison to match, I found that I wanted to use "for cnd (cond vec_cond)" but that was not causing the lowering of cond to happen. What was happening was the lowering of the for loop was happening after the lowering of the cond. So s

Re: [PATCH 6/7] Lower for loops before lowering cond in genmatch

2021-06-21 Thread Richard Biener via Gcc-patches
On Sat, Jun 19, 2021 at 11:43 PM apinski--- via Gcc-patches wrote: > > From: Andrew Pinski > > While converting some fold_cond_expr_with_comparison > to match, I found that I wanted to use "for cnd (cond vec_cond)" > but that was not causing the lowering of cond to happen. > What was happening wa

[PATCH 6/7] Lower for loops before lowering cond in genmatch

2021-06-19 Thread apinski--- via Gcc-patches
From: Andrew Pinski While converting some fold_cond_expr_with_comparison to match, I found that I wanted to use "for cnd (cond vec_cond)" but that was not causing the lowering of cond to happen. What was happening was the lowering of the for loop was happening after the lowering of the cond. So s