gcc/gcc/testsuite/gcc.target/alpha/pr22093.c

15 lines
188 B
C

/* { dg-do compile } */
/* { dg-options "-O2" } */
struct shared_ptr_struct
{
unsigned long phase : 48;
unsigned thread : 16;
void *addr;
} x;
void foo (void)
{
x.thread = 2;
}