On Mon, Feb 24, 2020 at 11:04:55AM -0600, Bill Schmidt wrote: > > + if (clonei->simdlen > > + && (clonei->simdlen < 2 > > + || clonei->simdlen > 1024 > > Assuming that clonei->simdlen matches "vector length" in the ABI, 1024 is > too large a number. We can have at most 8 vector registers containing > a homogeneous aggregate, each having up to 16 elements, so the correct > limit would be 128.
Well, further arguments can be passed on the stack... Jakub