aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/packed-vla.c
blob: 04ccb96636dce064c17fea16a45b6d7285d109d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* PR middle-end/27945 */
/* { dg-do run } */
/* { dg-options "" } */

extern int printf (const char *, ...);
extern void abort ();

int func(int levels) 
{
  struct bar {
    unsigned char	a;
    int			b[levels];
  } __attribute__ ((__packed__)) bar;

  struct foo {
    unsigned char	a;
    int			b[4];
  } __attribute__ ((__packed__)) foo;

  printf("foo %d\n", sizeof(foo));
  printf("bar %d\n", sizeof(bar));

  if (sizeof (foo) != sizeof (bar))
    abort ();
}

int main()
{
  func(4);
  return 0;
}