(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
debug/
dwarf2/
dwarf-uninit.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -gdwarf -dA" } */
       3  /* { dg-final { scan-assembler "DW_TAG_variable" } } */
       4  /* PR debug/21828 */
       5  
       6  static int i;
       7  int main() {
       8    i += 3;
       9    return 0;
      10  }