Re: vect: Don't pattern match BITFIELD_REF's of non-integrals [PR107226]

2022-10-13 Thread Richard Biener via Gcc-patches
On Wed, 12 Oct 2022, Andre Vieira (lists) wrote: > Hi, > > The original patch supported matching the vect_recog_bitfield_ref_pattern for > BITFIELD_REF's where the first operand didn't have a INTEGRAL_TYPE_P type. > That means it would also match vectors, leading to regressions in targets that >

vect: Don't pattern match BITFIELD_REF's of non-integrals [PR107226]

2022-10-12 Thread Andre Vieira (lists) via Gcc-patches
Hi, The original patch supported matching the vect_recog_bitfield_ref_pattern for BITFIELD_REF's where the first operand didn't have a INTEGRAL_TYPE_P type. That means it would also match vectors, leading to regressions in targets that supported vectorization of those. Bootstrappend and