mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
8079adb986
llvm-svn: 17160
27 lines
495 B
Plaintext
27 lines
495 B
Plaintext
; RUN: llvm-as < %s | 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
|
|
}
|