(root)/
gcc-13.2.0/
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  }