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

     1  foo (a, b, c, d)
     2  {
     3    if (a < 0)
     4      {
     5        b = c;
     6      }
     7    else
     8      {
     9        b = d;
    10      }
    11    return b + 75;
    12  }