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

     1  extern void baz (int, int, int);
     2  
     3  int j;
     4  
     5  int
     6  bar (void)
     7  {
     8    int n = 0, *np = &n;
     9    if (j)
    10      baz (0, 0, 0);
    11    if (j)
    12      baz (0, 0, 0);
    13    return n;
    14  }
    15  
    16  void
    17  foo (void)
    18  {
    19    bar ();
    20    bar ();
    21  }
    22