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 arm_neon_hw } */
7 /* { dg-require-effective-target arm32 } */
8 /* { dg-add-options arm_neon } */
9 
10 
11 #ifndef IN_FRAMEWORK
12 #define VFP
13 #define NEON
14 #define TESTFILE "neon-vect7.c"
15 #include "neon-constants.h"
16 
17 
18 #include "abitest.h"
19 #else
20 
21 ARG(float, 24.3f, S0) /* S0 , D0, Q0 */
22 ARG(int32x4x3_t, i32x4x3_constvec1, Q1) /* Q1, Q2, Q3  */
23 ARG(double, 25.6, D1)
24 ARG(float, 12.67f, S1)
25 ARG(int32x4x3_t, i32x4x3_constvec2, STACK)
26 ARG(double, 2.47, STACK+sizeof(int32x4x3_t))
27 LAST_ARG(int, 3, R0)
28 #endif
29