Re: [PATCH] aarch64: Fix ICE in poly-int.h due to SLP.

2024-01-31 Thread Richard Sandiford
> From: Prathamesh Kulkarni > Sent: 30 January 2024 17:36 > To: Richard Ball > Cc: gcc-patches@gcc.gnu.org ; Richard Sandiford > ; Kyrylo Tkachov ; Richard > Earnshaw ; Marcus Shawcroft > > Subject: Re: [PATCH] aarch64: Fix ICE in poly-int.h due to SLP. > > On

Re: [PATCH] aarch64: Fix ICE in poly-int.h due to SLP.

2024-01-31 Thread Richard Ball
nuary 2024 17:36 To: Richard Ball Cc: gcc-patches@gcc.gnu.org ; Richard Sandiford ; Kyrylo Tkachov ; Richard Earnshaw ; Marcus Shawcroft Subject: Re: [PATCH] aarch64: Fix ICE in poly-int.h due to SLP. On Tue, 30 Jan 2024 at 20:13, Richard Ball wrote: > > Adds a check to ensure that

Re: [PATCH] aarch64: Fix ICE in poly-int.h due to SLP.

2024-01-30 Thread Prathamesh Kulkarni
On Tue, 30 Jan 2024 at 20:13, Richard Ball wrote: > > Adds a check to ensure that the input vector arguments > to a function are not variable length. Previously, only the > output vector of a function was checked. Hi, Quoting from patch: @@ -8989,6 +8989,14 @@ vectorizable_slp_permutation_1 (vec_i

[PATCH] aarch64: Fix ICE in poly-int.h due to SLP.

2024-01-30 Thread Richard Ball
Adds a check to ensure that the input vector arguments to a function are not variable length. Previously, only the output vector of a function was checked. gcc/ChangeLog: * tree-vect-slp.cc (vectorizable_slp_permutation_1): Add variable-length check for vector input arguments