(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
compat/
scalar-by-value-6_main.c
       1  /* Test that function args can be passed in various positions to both fixed
       2     and variable arg functions.  */
       3  /* { dg-options "-O" } */
       4  /* { dg-options "-O -mlong-double-128" { target powerpc*-*-* } } */
       5  
       6  extern void exit (int);
       7  extern void longdouble_i_doit (void);
       8  extern void longdouble_d_doit (void);
       9  #ifndef SKIP_COMPLEX
      10  extern void complexlongdouble_i_doit (void);
      11  extern void complexlongdouble_d_doit (void);
      12  #endif
      13  
      14  int main (void)
      15  {
      16    longdouble_i_doit ();
      17    longdouble_d_doit ();
      18  #ifndef SKIP_COMPLEX
      19    complexlongdouble_i_doit ();
      20    complexlongdouble_d_doit ();
      21  #endif
      22    exit (0);
      23  }