new testcase
[oota-llvm.git] / test / CodeGen / PowerPC / addi-reassoc.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 &&
2 ; RUN: llvm-as < %s | llc -march=ppc32 | not grep addi
3
4         %struct.X = type { [5 x sbyte] }
5 implementation   ; Functions:
6
7 int %test1([4 x int]* %P, int %i) {
8         %tmp.2 = add int %i, 2          ; <int> [#uses=1]
9         %tmp.4 = getelementptr [4 x int]* %P, int %tmp.2, int 1
10         %tmp.5 = load int* %tmp.4
11         ret int %tmp.5
12 }
13
14 int %test2(%struct.X* %P, int %i) {
15         %tmp.2 = add int %i, 2
16         %tmp.5 = getelementptr %struct.X* %P, int %tmp.2, uint 0, int 1
17         %tmp.6 = load sbyte* %tmp.5
18         %tmp.7 = cast sbyte %tmp.6 to int
19         ret int %tmp.7
20 }
21