OSDN Git Service

2004-11-15 Mark Mitchell <mark@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / pr18299-1.c
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 }