Re: [PATCH v1 1/3] RISC-V: add consecutive_bits_operand predicate

2022-06-14 Thread Philipp Tomsich
Thanks, applied to master! On Tue, 7 Jun 2022 at 12:26, Kito Cheng wrote: > > LGTM > > > On Wed, May 25, 2022 at 5:48 AM Philipp Tomsich > wrote: > > > > Provide an easy way to constrain for constants that are a a single, > > consecutive run of ones. > > > > gcc/ChangeLog: > > > > * con

Re: [PATCH v1 1/3] RISC-V: add consecutive_bits_operand predicate

2022-06-07 Thread Kito Cheng via Gcc-patches
LGTM On Wed, May 25, 2022 at 5:48 AM Philipp Tomsich wrote: > > Provide an easy way to constrain for constants that are a a single, > consecutive run of ones. > > gcc/ChangeLog: > > * config/riscv/predicates.md (consecutive_bits_operand): > Implement new predicate. > > Signed-o

[PATCH v1 1/3] RISC-V: add consecutive_bits_operand predicate

2022-05-24 Thread Philipp Tomsich
Provide an easy way to constrain for constants that are a a single, consecutive run of ones. gcc/ChangeLog: * config/riscv/predicates.md (consecutive_bits_operand): Implement new predicate. Signed-off-by: Philipp Tomsich --- gcc/config/riscv/predicates.md | 11 +++ 1