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
5static inline int f(int i)
6{
7  const int __t = (__t);
8}
9int g(void)
10{
11  return f(0);
12}
13