blob: c12dd44e6b9c24edb3bc63026120465b00723d99 [file] [log] [blame]
Tanya Lattner6f729d62008-03-25 04:26:08 +00001; RUN: llvm-as < %s | \
Dan Gohmanfea1dd02009-08-25 15:38:29 +00002; RUN: llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -o %t1
Reid Spencerc58ef012007-04-15 21:17:45 +00003; RUN not grep {stw r31, 20(r1)} %t1
4; RUN: grep {stwu r1, -16448(r1)} %t1
5; RUN: grep {addi r1, r1, 16448} %t1
Tanya Lattner6f729d62008-03-25 04:26:08 +00006; RUN: llvm-as < %s | \
Reid Spencerc58ef012007-04-15 21:17:45 +00007; RUN: not grep {lwz r31, 20(r1)}
Tanya Lattner6f729d62008-03-25 04:26:08 +00008; RUN: llvm-as < %s | \
Reid Spencerc58ef012007-04-15 21:17:45 +00009; RUN: llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
Dan Gohmanfea1dd02009-08-25 15:38:29 +000010; RUN: -o %t2
Reid Spencerc58ef012007-04-15 21:17:45 +000011; 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
Tanya Lattner6f729d62008-03-25 04:26:08 +000015; RUN: llvm-as < %s | \
Dan Gohmanfea1dd02009-08-25 15:38:29 +000016; RUN: llc -march=ppc64 -mtriple=powerpc-apple-darwin8 -o %t3
Reid Spencerc58ef012007-04-15 21:17:45 +000017; 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
Tanya Lattner6f729d62008-03-25 04:26:08 +000021; RUN: llvm-as < %s | \
Reid Spencerc58ef012007-04-15 21:17:45 +000022; RUN: llc -march=ppc64 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
Dan Gohmanfea1dd02009-08-25 15:38:29 +000023; RUN: -o %t4
Reid Spencerc58ef012007-04-15 21:17:45 +000024; 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
Jim Laskey64c32dd2006-11-17 16:54:21 +000028
Tanya Lattner6f729d62008-03-25 04:26:08 +000029define i32* @f1() {
30 %tmp = alloca i32, i32 4095 ; <i32*> [#uses=1]
31 ret i32* %tmp
Jim Laskey64c32dd2006-11-17 16:54:21 +000032}
Tanya Lattner6f729d62008-03-25 04:26:08 +000033