diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-03-04 23:16:26 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-03-04 23:16:26 +0000 |
commit | 3fab77eb2541e267c45d72d0aa5adda74acf9c0c (patch) | |
tree | c65823d5ec639eb87f408518c25dca99119918dc /test/CodeGen/PowerPC/Frames-alloca.ll | |
parent | 880d0f6018b6928bdcad291be60c801238619955 (diff) | |
download | external_llvm-3fab77eb2541e267c45d72d0aa5adda74acf9c0c.zip external_llvm-3fab77eb2541e267c45d72d0aa5adda74acf9c0c.tar.gz external_llvm-3fab77eb2541e267c45d72d0aa5adda74acf9c0c.tar.bz2 |
Use -enable-ppc-regscavenger flag for these checks
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/Frames-alloca.ll')
-rw-r--r-- | test/CodeGen/PowerPC/Frames-alloca.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/Frames-alloca.ll b/test/CodeGen/PowerPC/Frames-alloca.ll index 359b352..058de5a 100644 --- a/test/CodeGen/PowerPC/Frames-alloca.ll +++ b/test/CodeGen/PowerPC/Frames-alloca.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \ ; RUN: grep {stw r31, 20(r1)} -; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \ +; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -enable-ppc-regscavenger | \ ; RUN: grep {stwu r1, -80(r1)} ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \ ; RUN: grep {lwz r1, 0(r1)} @@ -8,7 +8,7 @@ ; RUN: grep {lwz r31, 20(r1)} ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim | \ ; RUN: grep {stw r31, 20(r1)} -; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim | \ +; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim -enable-ppc-regscavenger | \ ; RUN: grep {stwu r1, -80(r1)} ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim | \ ; RUN: grep {lwz r1, 0(r1)} |