blob: 0a8aa8decd14495192ee4e7486b563c0ddeab493 [file] [log] [blame]
/* { dg-do assemble { target aarch64_asm_sve_ok } } */
/* { dg-options "-O -msve-vector-bits=256 --save-temps" } */
/* { dg-final { check-function-bodies "**" "" } } */
/* Case 1.2: Trailing constants with repeating sequence. */
#include <stdint.h>
typedef int32_t vnx4si __attribute__((vector_size (32)));
/*
** foo:
** ...
** ld1rd (z[0-9]+)\.d, p[0-9]+/z, \[x[0-9]+\]
** insr \1\.s, w1
** insr \1\.s, w0
** ...
*/
__attribute__((noipa))
vnx4si foo(int a, int b)
{
return (vnx4si) { a, b, 2, 3, 2, 3, 2, 3 };
}