1 ; RUN: opt < %s -globalopt -S > %t
2 ; RUN: grep {@Y = internal unnamed_addr global \\\[3 x \[%\]struct.X\\\] zeroinitializer} %t
3 ; RUN: grep load %t | count 6
4 ; RUN: grep {add i32 \[%\]a, \[%\]b} %t | count 3
6 ; globalopt should not sra the global, because it can't see the index.
8 %struct.X = type { [3 x i32], [3 x i32] }
10 @Y = internal global [3 x %struct.X] zeroinitializer
12 @addr = external global i8
15 store i32 1, i32* getelementptr inbounds ([3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 ptrtoint (i8* @addr to i64)), align 4
18 define i32 @borf(i64 %i, i64 %j) {
19 %p = getelementptr inbounds [3 x %struct.X]* @Y, i64 0, i64 0, i32 0, i64 0
21 %q = getelementptr inbounds [3 x %struct.X]* @Y, i64 0, i64 0, i32 1, i64 0
26 define i32 @borg(i64 %i, i64 %j) {
27 %p = getelementptr inbounds [3 x %struct.X]* @Y, i64 0, i64 1, i32 0, i64 1
29 %q = getelementptr inbounds [3 x %struct.X]* @Y, i64 0, i64 1, i32 1, i64 1
34 define i32 @borh(i64 %i, i64 %j) {
35 %p = getelementptr inbounds [3 x %struct.X]* @Y, i64 0, i64 2, i32 0, i64 2
37 %q = getelementptr inbounds [3 x %struct.X]* @Y, i64 0, i64 2, i32 1, i64 2