(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
aapcs64/
test_17.c
       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_17.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  float f1 = 25.0;
      25  struct z a = { 5.0, 6.0, 7.0, 8.0 };
      26  struct z b = { 9.0, 10.0, 11.0, 12.0 };
      27  
      28  #include "abitest.h"
      29  #else
      30    ARG(double, 11.0, D0)
      31    DOTS
      32    ANON(struct z, a, D1)
      33    ANON(struct z, b, STACK)
      34    ANON(int , 5, W0)
      35    ANON(double, f1, STACK+32)
      36    LAST_ANON(double, 0.5, STACK+40)
      37  #endif