mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
18 lines
247 B
Plaintext
18 lines
247 B
Plaintext
|
; RUN: llvm-as < %s | opt -globalopt
|
||
|
|
||
|
%V = global float 12.0
|
||
|
%G = internal global int* null
|
||
|
|
||
|
int %user() {
|
||
|
%P = load int** %G
|
||
|
%Q = load int* %P
|
||
|
ret int %Q
|
||
|
}
|
||
|
|
||
|
void %setter() {
|
||
|
%Vi = cast float* %V to int*
|
||
|
store int* %Vi, int** %G
|
||
|
ret void
|
||
|
}
|
||
|
|