1  /* Test AAPCS64 layout */
       2  
       3  /* { dg-do run { target aarch64*-*-* } } */
       4  
       5  #ifndef IN_FRAMEWORK
       6  #define TESTFILE "test_dfp_22.c"
       7  
       8  struct y
       9  {
      10    _Decimal32 p;
      11    _Decimal32 q;
      12  } v = { 345.0df, 678.0df };
      13  
      14  #include "abitest.h"
      15  #else
      16    ARG(_Decimal32, 123.0df, S0)
      17    ARG(struct y, v, S1)
      18    LAST_ARG(_Decimal32, 901.0df, S3)
      19  #endif