llvm-6502/test/Transforms/GlobalOpt/globalsra.ll
Chris Lattner 5ae21fb23a rename *.llx -> *.ll, last batch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49971 91177308-0d34-0410-b5e6-96231b3b80d8
2008-04-19 22:32:52 +00:00

24 lines
840 B
LLVM

; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep global
@G = internal global { i32, float, { double } } {
i32 1,
float 1.000000e+00,
{ double } { double 1.727000e+01 } } ; <{ i32, float, { double } }*> [#uses=3]
define void @onlystore() {
store i32 123, i32* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 0)
ret void
}
define float @storeinit() {
store float 1.000000e+00, float* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 1)
%X = load float* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 1) ; <float> [#uses=1]
ret float %X
}
define double @constantize() {
%X = load double* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 2, i32 0) ; <double> [#uses=1]
ret double %X
}