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