From 64c32dd2eaad73f92f60768212687d85f8114ca7 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Fri, 17 Nov 2006 16:54:21 +0000 Subject: Tests to verify PowerPC ABI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31825 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/Frames-alloca.ll | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/CodeGen/PowerPC/Frames-alloca.ll (limited to 'test/CodeGen/PowerPC/Frames-alloca.ll') diff --git a/test/CodeGen/PowerPC/Frames-alloca.ll b/test/CodeGen/PowerPC/Frames-alloca.ll new file mode 100644 index 0000000..0fcae1a --- /dev/null +++ b/test/CodeGen/PowerPC/Frames-alloca.ll @@ -0,0 +1,24 @@ +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'stw r31, 20(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'stwu r1, -64(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'lwz r1, 0(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 | grep 'lwz r31, 20(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 -disable-fp-elim | grep 'stw r31, 20(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 -disable-fp-elim | grep 'stwu r1, -64(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 -disable-fp-elim | grep 'lwz r1, 0(r1)' && +; RUN: llvm-as < %s | llc -march=ppc32 -disable-fp-elim | grep 'lwz r31, 20(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 | grep 'std r31, 40(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 | grep 'stdu r1, -112(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 | grep 'ld r1, 0(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 | grep 'ld r31, 40(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 -disable-fp-elim | grep 'std r31, 40(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 -disable-fp-elim | grep 'stdu r1, -112(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 -disable-fp-elim | grep 'ld r1, 0(r1)' && +; RUN: llvm-as < %s | llc -march=ppc64 -disable-fp-elim | grep 'ld r31, 40(r1)' + + +implementation + +int* %f1(uint %n) { + %tmp = alloca int, uint %n + ret int* %tmp +} -- cgit v1.1