blob: 71199d445158d105003d18b48efa77598fa925bf [file] [log] [blame]
/* PR middle-end/49029 */
/* { dg-require-effective-target int32plus } */
struct S { volatile unsigned f : 11; signed g : 30; } __attribute__((packed));
struct T { volatile struct S h; } __attribute__((packed)) a;
void foo (int);
void
bar ()
{
foo (a.h.g);
}