aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/920410-2.c
blob: 958aae9cb0f2d86bf97feb36818162e8d42f0f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
joe()
{
  int j;

  while( 1 )
    {
      for( j = 0; j < 4; j++ )
	;
      for( j = 0; j < 4; j++ )
	;
    }
}