aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/fold-li.ll
blob: 66a900faf062adf981e3d19d52adc701bc6a8b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | \
; RUN:   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
}