aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/eqv.ll
blob: 716b2f76e2884bf6aeed101f4194b29b99bcd74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-as < %s | llc -march=ppc32 | grep eqv | wc -l | grep 2

int %test1(int %X, int %Y) {
	%A = xor int %X, %Y
	%B = xor int %A, -1
	ret int %B
}

int %test2(int %X, int %Y) {
	%A = xor int %X, %Y
	%B = xor int %A, -1
	ret int %B
}