Re: [PATCH] cleanup: Change condition order

2023-07-21 Thread Lehua Ding
Commited, thanks Richard. Bootstrap and regression passed. -- Original -- From: "Richard Biener"

Re: [PATCH] cleanup: Change condition order

2023-07-20 Thread Richard Biener via Gcc-patches
On Fri, 21 Jul 2023, Juzhe-Zhong wrote: > Hi, Richard and Richi. > > I have double check the recent codes for len && mask support again. > > Some places code structure: > > if (len_mask_fn) > ... > else if (mask_fn) > ... > > some places code structure: > > if (mask_len_fn) > ... > else if (m

[PATCH] cleanup: Change condition order

2023-07-20 Thread Juzhe-Zhong
Hi, Richard and Richi. I have double check the recent codes for len && mask support again. Some places code structure: if (len_mask_fn) ... else if (mask_fn) ... some places code structure: if (mask_len_fn) ... else if (mask) Base on previous review comment from Richi: https://gcc.gnu.org/pip