aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00007.c
blob: acdc901a080e603f49f82e03d44ff060f5463387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int
main()
{
	int x;
	
	x = 1;
	for(x = 10; x; x = x - 1)
		;
	if(x)
		return 1;
	x = 10;
	for (;x;)
		x = x - 1;
	return x;
}