(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr61684.c
       1  /* PR tree-optimization/61684 */
       2  
       3  int a, c;
       4  static int *b = 0;
       5  short d;
       6  static short **e = 0;
       7  
       8  void
       9  foo ()
      10  {
      11    for (; c < 1; c++)
      12      ;
      13    *e = &d;
      14    a = d && (c && 1) & *b;
      15  }