modernc.org/cc@v1.0.1/testdata/gcc-6.3.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  }