aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00029.c
blob: 74180cb90d880598f62520416809337cbea7b5ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int
main()
{
	int x;
	
	x = 1;
	x = x ^ 3;
	return x - 2;
}