mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 04:08:07 +00:00
25 lines
440 B
LLVM
25 lines
440 B
LLVM
|
; RUN: llvm-as < %s | opt -argpromotion -mem2reg | llvm-dis | not grep alloca
|
||
|
|
||
|
implementation
|
||
|
|
||
|
internal int %test(int *%X, int* %Y) {
|
||
|
%A = load int* %X
|
||
|
%B = load int* %Y
|
||
|
%C = add int %A, %B
|
||
|
ret int %C
|
||
|
}
|
||
|
|
||
|
internal int %caller(int* %B) {
|
||
|
%A = alloca int
|
||
|
store int 1, int* %A
|
||
|
%C = call int %test(int* %A, int* %B)
|
||
|
ret int %C
|
||
|
}
|
||
|
|
||
|
int %callercaller() {
|
||
|
%B = alloca int
|
||
|
store int 2, int* %B
|
||
|
%X = call int %caller(int* %B)
|
||
|
ret int %X
|
||
|
}
|