OSDN Git Service

2005-08-09 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 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 }