1 /* Test AAPCS layout (VFP variant for Neon types) */
2 
3 /* { dg-do run { target arm*-*-*eabi* } } */
4 /* { dg-require-effective-target arm_hard_vfp_ok } */
5 /* { dg-require-effective-target arm_neon_ok } */
6 /* { dg-require-effective-target arm32 } */
7 /* { dg-add-options arm_neon } */
8 
9 
10 #ifndef IN_FRAMEWORK
11 #define VFP
12 #define NEON
13 #define TESTFILE "neon-vect7.c"
14 #include "neon-constants.h"
15 
16 
17 #include "abitest.h"
18 #else
19 
20 ARG(float, 24.3f, S0) /* S0 , D0, Q0 */
21 ARG(int32x4x3_t, i32x4x3_constvec1, Q1) /* Q1, Q2, Q3  */
22 ARG(double, 25.6, D1)
23 ARG(float, 12.67f, S1)
24 ARG(int32x4x3_t, i32x4x3_constvec2, STACK)
25 ARG(double, 2.47, STACK+sizeof(int32x4x3_t))
26 LAST_ARG(int, 3, R0)
27 #endif
28