1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-06 05:33:28 +00:00
2006-12-02 04:23:10 +00:00

24 lines
590 B
Plaintext

; In this case, the global can only be broken up by one level.
; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | not grep 12345
%G = internal global { int, [4 x float] } zeroinitializer
void %onlystore() {
store int 12345, int* getelementptr ({ int, [4 x float] }* %G, int 0, uint 0)
ret void
}
void %storeinit(int %i) {
%Ptr = getelementptr { int, [4 x float] }* %G, int 0, uint 1, int %i
store float 1.0, float* %Ptr
ret void
}
float %readval(int %i) {
%Ptr = getelementptr { int, [4 x float] }* %G, int 0, uint 1, int %i
%V = load float* %Ptr
ret float %V
}