blob: bdd62941b4db0aa91b8b640bd8be5d968108dfe6 [file] [log] [blame]
/* PR middle-end/50141 */
/* { dg-do compile } */
/* { dg-options "-O2 --param allow-store-data-races=0" } */
struct S
{
int i:8;
};
void bar (struct S, int);
void
foo (struct S s, int i)
{
s.i = i;
bar (s, i);
}