mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 02:32:08 +00:00
30 lines
418 B
LLVM
30 lines
418 B
LLVM
|
|
||
|
implementation
|
||
|
|
||
|
void %test1() {
|
||
|
%X = malloc int*
|
||
|
%Y = malloc int
|
||
|
%Z = cast int* %Y to int
|
||
|
%W = cast int %Z to int*
|
||
|
store int* %W, int** %X
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
void %test2(int* %P) {
|
||
|
%X = malloc int*
|
||
|
%Y = malloc int
|
||
|
store int* %P, int** %X
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
internal int *%test3(int* %P) {
|
||
|
ret int* %P
|
||
|
}
|
||
|
|
||
|
void %test4() {
|
||
|
%X = malloc int
|
||
|
%Y = call int* %test3(int* %X)
|
||
|
%ZZ = getelementptr int* null, int 17
|
||
|
ret void
|
||
|
}
|