(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
aapcs64/
ice_3.c
       1  /* Test AAPCS layout
       2  
       3  /* { dg-do compile { target aarch64*-*-* } } */
       4  
       5  #define vector __attribute__((vector_size(16)))
       6  
       7  void
       8  foo(int a, ...);
       9  
      10  int
      11  main(void)
      12  {
      13    foo (1, (vector unsigned int){10,11,12,13},
      14         2, (vector unsigned int){20,21,22,23});
      15    return 0;
      16  }