[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / GlobalOpt / globalsra-partial.ll
blob141ee1bb5a8c0ad999216e5141e2e8d1fc6859d6
1 ; In this case, the global cannot be merged as i may be out of range
3 ; RUN: opt < %s -globalopt -S | FileCheck %s
4 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
6 @G = internal global { i32, [4 x float] } zeroinitializer               ; <{ i32, [4 x float] }*> [#uses=3]
8 ; CHECK: @G = internal unnamed_addr global { i32, [4 x float] }
9 ; CHECK: 12345
10 define void @onlystore() {
11         store i32 12345, i32* getelementptr ({ i32, [4 x float] }, { i32, [4 x float] }* @G, i32 0, i32 0)
12         ret void
15 define void @storeinit(i32 %i) {
16         %Ptr = getelementptr { i32, [4 x float] }, { i32, [4 x float] }* @G, i32 0, i32 1, i32 %i             ; <float*> [#uses=1]
17         store float 1.000000e+00, float* %Ptr
18         ret void
21 define float @readval(i32 %i) {
22         %Ptr = getelementptr { i32, [4 x float] }, { i32, [4 x float] }* @G, i32 0, i32 1, i32 %i             ; <float*> [#uses=1]
23         %V = load float, float* %Ptr           ; <float> [#uses=1]
24         ret float %V