llvm-6502/test/CodeGen/PowerPC/fold-li.ll
2006-12-02 04:23:10 +00:00

15 lines
328 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 &&
; RUN: llvm-upgrade < %s | llvm-as | 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
}