aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00008.c
blob: 115b8b9c24b2fc26988285a1765523e68f554541 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
int
main()
{
	int x;

	x = 50;
	do 
		x = x - 1;
	while(x);
	return x;
}