aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/fold-li.ll
blob: 725f1d48484e4d7c12091e79fa2e3bde2e9b9abf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: llvm-as < %s | llc -march=ppc32 &&
; RUN: llvm-as < %s | llc -march=ppc32 | grep -v align | not grep li

;; Test that immediates are folded into these instructions correctly.

int %ADD(int %X) {
	%Y = add int %X, 65537
	ret int %Y
}

int %SUB(int %X) {
	%Y = sub int %X, 65537
	ret int %Y
}