PR tree-optimization/86401
[official-gcc.git] / gcc / testsuite / c-c++-common / cxxbitfields-6.c
blobbdd62941b4db0aa91b8b640bd8be5d968108dfe6
1 /* PR middle-end/50141 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 --param allow-store-data-races=0" } */
5 struct S
7 int i:8;
8 };
10 void bar (struct S, int);
12 void
13 foo (struct S s, int i)
15 s.i = i;
16 bar (s, i);