gcc/gcc/testsuite/gcc.target/aarch64/aapcs64/ice_2.c

14 lines
297 B
C

/* Test AAPCS layout
Larger than machine-supported vector size. The behavior is unspecified by
the AAPCS64 document; the implementation opts for pass by reference. */
/* { dg-do compile { target aarch64*-*-* } } */
typedef char A __attribute__ ((vector_size (64)));
void
foo (A a)
{
}