OSDN Git Service

2004-10-05 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030503-1.c
1 void foo ()
2 {
3   if (1)
4     goto foo;
5   else
6     for (;;)
7       {
8       foo:
9         bar ();
10         return;
11       }
12 }