blob: ecd5ecd2eca1421ac483ef2b428ab4bb990e3940 [file] [log] [blame]
Dan Gohmanb7c0b242009-09-11 18:36:27 +00001; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -o %t1
Benjamin Kramer7bff3e72011-03-09 22:07:31 +00002; RUN: not grep {stw r31, -4(r1)} %t1
Reid Spencerc58ef012007-04-15 21:17:45 +00003; RUN: grep {stwu r1, -16448(r1)} %t1
4; RUN: grep {addi r1, r1, 16448} %t1
Dan Gohmanb7c0b242009-09-11 18:36:27 +00005; RUN: llc < %s -march=ppc32 | \
Dale Johannesenf7801b42009-11-24 22:59:02 +00006; RUN: not grep {lwz r31, -4(r1)}
Dan Gohmanb7c0b242009-09-11 18:36:27 +00007; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
Dan Gohmanfea1dd02009-08-25 15:38:29 +00008; RUN: -o %t2
Dale Johannesenf7801b42009-11-24 22:59:02 +00009; RUN: grep {stw r31, -4(r1)} %t2
Reid Spencerc58ef012007-04-15 21:17:45 +000010; RUN: grep {stwu r1, -16448(r1)} %t2
11; RUN: grep {addi r1, r1, 16448} %t2
Dale Johannesenf7801b42009-11-24 22:59:02 +000012; RUN: grep {lwz r31, -4(r1)} %t2
Dan Gohmanb7c0b242009-09-11 18:36:27 +000013; RUN: llc < %s -march=ppc64 -mtriple=powerpc-apple-darwin8 -o %t3
Dale Johannesenf7801b42009-11-24 22:59:02 +000014; RUN: not grep {std r31, -8(r1)} %t3
Reid Spencerc58ef012007-04-15 21:17:45 +000015; RUN: grep {stdu r1, -16496(r1)} %t3
16; RUN: grep {addi r1, r1, 16496} %t3
Dale Johannesenf7801b42009-11-24 22:59:02 +000017; RUN: not grep {ld r31, -8(r1)} %t3
Dan Gohmanb7c0b242009-09-11 18:36:27 +000018; RUN: llc < %s -march=ppc64 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
Dan Gohmanfea1dd02009-08-25 15:38:29 +000019; RUN: -o %t4
Dale Johannesenf7801b42009-11-24 22:59:02 +000020; RUN: grep {std r31, -8(r1)} %t4
21; RUN: grep {stdu r1, -16512(r1)} %t4
22; RUN: grep {addi r1, r1, 16512} %t4
23; RUN: grep {ld r31, -8(r1)} %t4
Jim Laskey64c32dd2006-11-17 16:54:21 +000024
Tanya Lattner6f729d62008-03-25 04:26:08 +000025define i32* @f1() {
26 %tmp = alloca i32, i32 4095 ; <i32*> [#uses=1]
27 ret i32* %tmp
Jim Laskey64c32dd2006-11-17 16:54:21 +000028}
Tanya Lattner6f729d62008-03-25 04:26:08 +000029