summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/commute-two-addr.ll
blob: 860c15979080b9436ed7b57c02898ca5ece1a042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; The register allocator can commute two-address instructions to avoid
; insertion of register-register copies.

; Check that there are no register-register copies left.
; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | not grep 'mov %E.X, %E.X'

%G = external global int

declare void %ext(int)

int %add_test(int %X, int %Y) {
	%Z = add int %X, %Y      ;; Last use of Y, but not of X.
	store int %Z, int* %G
	ret int %X
}

int %xor_test(int %X, int %Y) {
	%Z = xor int %X, %Y      ;; Last use of Y, but not of X.
	store int %Z, int* %G
	ret int %X
}