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

     1  /* From PR/9301.  Fixed by ebotcazou's patch for PR/9493.  */
     2  
     3  void bar (void);
     4  
     5  void foo (int a, int b, int c, int d, int e)
     6  {
     7    if (a)
     8      bar();
     9    if (b && c)
    10      ;
    11    if (d && e)
    12      ;
    13  }