aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-logical.ll
blob: 731f8e5a97a4622de5bf154d0fab130ae7b50985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

int %main() {
	%A = and sbyte 4, 8
	%B = or sbyte %A, 7
	%C = xor sbyte %B, %A

	%A = and short 4, 8
	%B = or short %A, 7
	%C = xor short %B, %A

	%A = and int 4, 8
	%B = or int %A, 7
	%C = xor int %B, %A

	ret int 0
}