(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
pr107326.c
       1  /* PR107326 */
       2  /* { dg-do compile } */
       3  struct Gsymtab {
       4    unsigned int : 8;
       5    unsigned int visited_somewhere : 1;
       6  };
       7  
       8  extern struct Gsymtab glob_symtab[];
       9  
      10  int
      11  visit_children (int i)
      12  {
      13    int numvisited = 0;
      14  
      15    while (i < 1)
      16      {
      17        if (glob_symtab[i].visited_somewhere)
      18          ++numvisited;
      19  
      20        ++i;
      21      }
      22  
      23    return numvisited;
      24  }