blob: 991c3d118b90080d87be839cd9d2cb9479f088fb [file] [log] [blame]
/* PR debug/43165 */
/* { dg-options "-g" } */
/* { dg-require-effective-target int32plus } */
struct __attribute__((packed)) S
{
unsigned char a;
unsigned short b;
unsigned short c;
unsigned d : 24;
};
void
foo (struct S p)
{
for (; p.c; p.c++)
;
}