(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
20000314-1.c
       1  int main ()
       2  {
       3    long winds = 0;
       4  
       5    while (winds != 0)
       6      {
       7        if (*(char *) winds)
       8  	break;
       9      }
      10  
      11    if (winds == 0 || winds != 0 || *(char *) winds)
      12      exit (0);
      13  
      14    abort ();
      15  }
      16  
      17