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

     1  /* We used to ICE in gimple-lower because we
     2     would produce __t (VAR_DECL) as a statement in the
     3     instruction stream which is not valid. */
     4  
     5  static inline int f(int i)
     6  {
     7    const int __t = (__t);
     8  }
     9  int g(void)
    10  {
    11    return f(0);
    12  }