aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr25805.c
blob: 94133ddd952eeea7d9722aea6805244c9a4036a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* When -fzero-initialized-in-bss was in effect, we used to only allocate
   storage for d1.a.  */
/* { dg-do run } */
/* { dg-options "" } */
/* { dg-skip-if "packed attribute missing for d1" { "epiphany-*-*" } { "*" } { "" } } */
extern void abort (void);
extern void exit (int);

struct { int a; int x[]; } d1 = { 0, 0 };
int d2 = 0;

int
main ()
{
  d2 = 1;
  if (sizeof (d1) != sizeof (int))
    abort ();
  if (d1.x[0] != 0)
    abort ();
  exit (0);
}