blob: bc698ddd38d5efb949ec808a3c0b3b89c23f75db [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 5.5: Interleaved repeating elements and trailing same elements. */
#include <stdint.h>
typedef int32_t vnx4si __attribute__((vector_size (32)));
/*
** foo:
** fmov (s[0-9]+), w1
** mov (z[0-9]+\.s), w2
** mov (z[0-9]+\.s), w0
** insr \3, \1
** insr \3, \1
** insr \3, \1
** zip1 \3, \3, \2
** ...
*/
__attribute__((noipa))
vnx4si foo(int a, int b, int f)
{
return (vnx4si) { b, f, b, f, b, f, a, f };
}