mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
95d0bbfda6
cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16914 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
282 B
Plaintext
19 lines
282 B
Plaintext
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep global
|
|
|
|
%G = internal global int* null
|
|
|
|
void %init() {
|
|
%P = malloc int
|
|
store int* %P, int** %G
|
|
|
|
%GV = load int** %G
|
|
store int 0, int* %GV
|
|
ret void
|
|
}
|
|
|
|
int %get() {
|
|
%GV = load int** %G
|
|
%V = load int* %GV
|
|
ret int %V
|
|
}
|