mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 15:39:06 +00:00
b07a4409c2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4455 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
370 B
LLVM
23 lines
370 B
LLVM
|
|
; very simple test
|
|
|
|
implementation
|
|
|
|
int *%foo(ulong %A, double %B, long %C) {
|
|
%X = malloc int*
|
|
%D = cast int** %X to ulong
|
|
%E = cast ulong %D to int*
|
|
store int* %E, int** %X
|
|
|
|
%F = malloc {int}
|
|
%G = getelementptr {int}* %F, long 0, ubyte 0
|
|
store int* %G, int** %X
|
|
|
|
%K = malloc int **
|
|
store int** %X, int***%K
|
|
|
|
%H = cast long %C to int*
|
|
ret int* null ; %H
|
|
}
|
|
|