(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr51246.c
       1  /* PR tree-optimization/51246 */
       2  
       3  int a, *b;
       4  
       5  void
       6  test (void)
       7  {
       8    while (1)
       9      {
      10        int c;
      11        a = c;
      12        b = &c;
      13      }
      14  }