aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/aapcs64/ice_3.c
blob: fb6816f4270e522b603cd0e4ba222fe5cfbbd88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Test AAPCS layout

/* { dg-do compile { target aarch64*-*-* } } */

#define vector __attribute__((vector_size(16)))

void
foo(int a, ...);

int
main(void)
{
  foo (1, (vector unsigned int){10,11,12,13},
       2, (vector unsigned int){20,21,22,23});
  return 0;
}