modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr51246.c (about)

     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  }