1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

add a testcase for a feature we regressed on because noone wrote the test! :(

llvm-svn: 23513
This commit is contained in:
Chris Lattner 2005-09-28 23:03:11 +00:00
parent 04dae1b9ce
commit 7ae5d2a51d

View File

@ -0,0 +1,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
}