summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/compat/struct-align-1_main.c
blob: 0b7f27bead0d958cead1b94e222549fef8d95279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test compatibility of structure layout and alignment for structs
   which contain doubles.  The original structs here are from PR 10645.  */

extern void struct_align_1_x (void);
extern void exit (int);
int fails;

int
main ()
{
  struct_align_1_x ();
  exit (0);
}