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

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