RE: [PATCH] RISC-V: Remove redundant vcond patterns

2023-06-26 Thread Li, Pan2 via Gcc-patches
...@gmail.com; rdapp@gmail.com Subject: Re: [PATCH] RISC-V: Remove redundant vcond patterns ok for trunk, thanks :) On Mon, Jun 26, 2023 at 4:44 PM Richard Biener via Gcc-patches wrote: > > On Mon, 26 Jun 2023, Juzhe-Zhong wrote: > > > Previously, Richi has suggested that vcond pa

Re: [PATCH] RISC-V: Remove redundant vcond patterns

2023-06-26 Thread Kito Cheng via Gcc-patches
ok for trunk, thanks :) On Mon, Jun 26, 2023 at 4:44 PM Richard Biener via Gcc-patches wrote: > > On Mon, 26 Jun 2023, Juzhe-Zhong wrote: > > > Previously, Richi has suggested that vcond patterns are only needed when > > target > > support comparison + select consuming 1 instruction. > > > > Now

Re: [PATCH] RISC-V: Remove redundant vcond patterns

2023-06-26 Thread Richard Biener via Gcc-patches
On Mon, 26 Jun 2023, Juzhe-Zhong wrote: > Previously, Richi has suggested that vcond patterns are only needed when > target > support comparison + select consuming 1 instruction. > > Now, I do the experiments on removing those "vcond" patterns, it works > perfectly. > > All testcases PASS. >

[PATCH] RISC-V: Remove redundant vcond patterns

2023-06-25 Thread Juzhe-Zhong
Previously, Richi has suggested that vcond patterns are only needed when target support comparison + select consuming 1 instruction. Now, I do the experiments on removing those "vcond" patterns, it works perfectly. All testcases PASS. Really appreicate Richi helps us recognize such issue. Now