(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
compat/
struct-align-1_main.c
       1  /* Test compatibility of structure layout and alignment for structs
       2     which contain doubles.  The original structs here are from PR 10645.  */
       3  
       4  extern void struct_align_1_x (void);
       5  extern void exit (int);
       6  int fails;
       7  
       8  int
       9  main ()
      10  {
      11    struct_align_1_x ();
      12    exit (0);
      13  }