(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
sve/
init_1.c
       1  /* { dg-do assemble { target aarch64_asm_sve_ok } } */
       2  /* { dg-options "-O -msve-vector-bits=256 --save-temps" } */
       3  /* { dg-final { check-function-bodies "**" "" } } */
       4  
       5  /* Case 1.1: Trailing constants with stepped sequence.  */
       6  
       7  #include <stdint.h>
       8  
       9  typedef int32_t vnx4si __attribute__((vector_size (32)));
      10  
      11  /*
      12  ** foo:
      13  **	index	(z[0-9]+\.s), #1, #1
      14  **	insr	\1, w1
      15  **	insr	\1, w0
      16  **	...
      17  */
      18  __attribute__((noipa))
      19  vnx4si foo(int a, int b)
      20  {
      21    return (vnx4si) { a, b, 1, 2, 3, 4, 5, 6 };
      22  }