1 /* PR middle-end/27945 */
3 /* { dg-options "" } */
5 extern int printf (const char *, ...);
13 } __attribute__ ((__packed__
)) bar
;
18 } __attribute__ ((__packed__
)) foo
;
20 printf("foo %d\n", sizeof(foo
));
21 printf("bar %d\n", sizeof(bar
));
23 if (sizeof (foo
) != sizeof (bar
))