blob: aaa1426918f2485cb6364f2ff1b60f3da2b64524 [file] [log] [blame]
Dan Gohmana7a841a2011-03-04 20:46:46 +00001; RUN: llc -march=x86-64 < %s | fgrep {addq $-16,} | count 1
2; rdar://9081094
3
4; LSR shouldn't create lots of redundant address computations.
5
6%0 = type { i32, [3 x i32] }
7%1 = type { i32 (i32, i32, i32)*, i32, i32, [3 x i32], i8*, i8*, i8* }
8
9@pgm = external hidden unnamed_addr global [5 x %0], align 32
10@isa = external hidden unnamed_addr constant [13 x %1], align 32
11
12define void @main_bb.i() nounwind {
13bb:
14 br label %bb38
15
16bb38: ; preds = %bb200, %bb
17 %tmp39 = phi i64 [ %tmp201, %bb200 ], [ 0, %bb ]
18 %tmp40 = sub i64 0, %tmp39
19 %tmp47 = getelementptr [5 x %0]* @pgm, i64 0, i64 %tmp40, i32 0
20 %tmp34 = load i32* %tmp47, align 16
21 %tmp203 = icmp slt i32 %tmp34, 12
22 br i1 %tmp203, label %bb215, label %bb200
23
24bb200: ; preds = %bb38
25 %tmp201 = add i64 %tmp39, 1
26 br label %bb38
27
28bb215: ; preds = %bb38
29 %tmp50 = getelementptr [5 x %0]* @pgm, i64 0, i64 %tmp40, i32 1, i64 2
30 %tmp49 = getelementptr [5 x %0]* @pgm, i64 0, i64 %tmp40, i32 1, i64 1
31 %tmp48 = getelementptr [5 x %0]* @pgm, i64 0, i64 %tmp40, i32 1, i64 0
32 %tmp216 = add nsw i32 %tmp34, 1
33 store i32 %tmp216, i32* %tmp47, align 16
34 %tmp217 = sext i32 %tmp216 to i64
35 %tmp218 = getelementptr inbounds [13 x %1]* @isa, i64 0, i64 %tmp217, i32 3, i64 0
36 %tmp219 = load i32* %tmp218, align 8
37 store i32 %tmp219, i32* %tmp48, align 4
38 %tmp220 = getelementptr inbounds [13 x %1]* @isa, i64 0, i64 %tmp217, i32 3, i64 1
39 %tmp221 = load i32* %tmp220, align 4
40 store i32 %tmp221, i32* %tmp49, align 4
41 %tmp222 = getelementptr inbounds [13 x %1]* @isa, i64 0, i64 %tmp217, i32 3, i64 2
42 %tmp223 = load i32* %tmp222, align 8
43 store i32 %tmp223, i32* %tmp50, align 4
44 ret void
45}