mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
510 B
Plaintext
27 lines
510 B
Plaintext
; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | not grep malloc
|
|
|
|
%G = internal global int* null
|
|
|
|
void %init() {
|
|
%P = malloc int, uint 100
|
|
store int* %P, int** %G
|
|
|
|
%GV = load int** %G
|
|
%GVe = getelementptr int* %GV, int 40
|
|
store int 20, int* %GVe
|
|
ret void
|
|
}
|
|
|
|
int %get() {
|
|
%GV = load int** %G
|
|
%GVe = getelementptr int* %GV, int 40
|
|
%V = load int* %GVe
|
|
ret int %V
|
|
}
|
|
|
|
bool %check() { ;; Return true if init has been called
|
|
%GV = load int** %G
|
|
%V = seteq int* %GV, null
|
|
ret bool %V
|
|
}
|