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