1 /* Test AAPCS layout (VFP variant) */
2 
3 /* { dg-do run { target aarch64*-*-* } } */
4 
5 #ifndef IN_FRAMEWORK
6 #define VFP
7 #define TESTFILE "test_11.c"
8 
9 __complex__ x = 1.0+2.0i;
10 
11 struct y
12 {
13   int p;
14   int q;
15   int r;
16   int s;
17 } v = { 1, 2, 3, 4 };
18 
19 struct z
20 {
21   double x[4];
22 };
23 
24 struct z a = { 5.0, 6.0, 7.0, 8.0 };
25 struct z b = { 9.0, 10.0, 11.0, 12.0 };
26 
27 #include "abitest.h"
28 #else
29   ARG(double, 11.0, D0)
30   DOTS
31   ANON(struct z, a, D1)
32   ANON(struct z, b, STACK)
33   LAST_ANON(double, 0.5, STACK+32)
34 #endif
35