]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr71071.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr71071.c
1 /* PR bootstrap/71071 */
2 /* { dg-do compile } *
3 /* { dg-options "-O2" } */
4
5 struct S { unsigned b : 1; } a;
6
7 void
8 foo ()
9 {
10 if (a.b)
11 ;
12 }