Some of these are feature tests, not regression tests.
[oota-llvm.git] / test / LLC / constindices.ll
1 ; Test that a sequence of constant indices are folded correctly
2 ; into the equivalent offset at compile-time.
3
4 %MixedA = type { float, [15 x int], sbyte, float }
5
6 %MixedB = type { float, %MixedA, float }
7
8 %fmtArg = internal global [44 x sbyte] c"sqrt(2) = %g\0Aexp(1) = %g\0Api = %g\0Afive = %g\0A\00"; <[44 x sbyte]*> [#uses=1]
9
10 implementation
11
12 declare int "printf"(sbyte*, ...)
13
14 int "main"()
15 begin
16         %ScalarA = alloca %MixedA
17         %ScalarB = alloca %MixedB
18         %ArrayA  = alloca %MixedA, uint 4
19         %ArrayB  = alloca %MixedB, uint 3
20         
21         store float 1.4142, %MixedA* %ScalarA, uint 0, ubyte 0 
22         store float 2.7183, %MixedB* %ScalarB, uint 0, ubyte 1, ubyte 0 
23         
24         %fptrA = getelementptr %MixedA* %ArrayA, uint 1, ubyte 0 
25         %fptrB = getelementptr %MixedB* %ArrayB, uint 2, ubyte 1, ubyte 0 
26         
27         store float 3.1415, float* %fptrA
28         store float 5.0,    float* %fptrB
29         
30         %sqrtTwo = load %MixedA* %ScalarA, uint 0, ubyte 0 
31         %exp     = load %MixedB* %ScalarB, uint 0, ubyte 1, ubyte 0 
32         %pi      = load %MixedA* %ArrayA, uint 1, ubyte 0 
33         %five    = load %MixedB* %ArrayB, uint 2, ubyte 1, ubyte 0  
34                  
35         %dsqrtTwo = cast float %sqrtTwo to double
36         %dexp     = cast float %exp to double
37         %dpi      = cast float %pi to double
38         %dfive    = cast float %five to double
39                   
40         %castFmt = getelementptr [44 x sbyte]* %fmtArg, uint 0, uint 0
41         call int (sbyte*, ...)* %printf(sbyte* %castFmt, double %dsqrtTwo, double %dexp, double %dpi, double %dfive)
42         
43         ret int 0
44 end