mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
41e8491989
cases. llvm-svn: 16914
21 lines
373 B
Plaintext
21 lines
373 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
|
|
}
|