1 /* PR middle-end/27945 */
3 /* { dg-options "" } */
4 /* { dg-require-effective-target alloca } */
6 extern int printf (const char *, ...);
14 } __attribute__ ((__packed__
)) bar
;
19 } __attribute__ ((__packed__
)) foo
;
21 printf("foo %d\n", sizeof(foo
));
22 printf("bar %d\n", sizeof(bar
));
24 if (sizeof (foo
) != sizeof (bar
))