mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
10 lines
182 B
LLVM
10 lines
182 B
LLVM
|
; RUN: as < %s | opt -raise
|
||
|
|
||
|
int* %test(int* %P, int* %Q) {
|
||
|
%P = cast int* %P to ulong
|
||
|
%Q = cast int* %Q to ulong
|
||
|
%V = add ulong %P, %Q
|
||
|
%V = cast ulong %V to int*
|
||
|
ret int* %V
|
||
|
}
|