mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
437 B
LLVM
24 lines
437 B
LLVM
; very simple test
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -tddatastructure
|
|
|
|
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, uint 0
|
|
store int* %G, int** %X
|
|
|
|
%K = malloc int **
|
|
store int** %X, int***%K
|
|
|
|
%H = cast long %C to int*
|
|
ret int* null ; %H
|
|
}
|
|
|