1 ; RUN: llvm-as < %s | \
2 ; RUN: llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -o %t1
3 ; RUN not grep {stw r31, 20(r1)} %t1
4 ; RUN: grep {stwu r1, -16448(r1)} %t1
5 ; RUN: grep {addi r1, r1, 16448} %t1
6 ; RUN: llvm-as < %s | \
7 ; RUN: not grep {lwz r31, 20(r1)}
8 ; RUN: llvm-as < %s | \
9 ; RUN: llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
11 ; RUN: grep {stw r31, 20(r1)} %t2
12 ; RUN: grep {stwu r1, -16448(r1)} %t2
13 ; RUN: grep {addi r1, r1, 16448} %t2
14 ; RUN: grep {lwz r31, 20(r1)} %t2
15 ; RUN: llvm-as < %s | \
16 ; RUN: llc -march=ppc64 -mtriple=powerpc-apple-darwin8 -o %t3
17 ; RUN: not grep {std r31, 40(r1)} %t3
18 ; RUN: grep {stdu r1, -16496(r1)} %t3
19 ; RUN: grep {addi r1, r1, 16496} %t3
20 ; RUN: not grep {ld r31, 40(r1)} %t3
21 ; RUN: llvm-as < %s | \
22 ; RUN: llc -march=ppc64 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
24 ; RUN: grep {std r31, 40(r1)} %t4
25 ; RUN: grep {stdu r1, -16496(r1)} %t4
26 ; RUN: grep {addi r1, r1, 16496} %t4
27 ; RUN: grep {ld r31, 40(r1)} %t4
30 %tmp = alloca i32, i32 4095 ; <i32*> [#uses=1]