mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
15 lines
298 B
LLVM
15 lines
298 B
LLVM
|
; 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
|
||
|
}
|