(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
test-flow.c
       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  }