diff options
| author | Dale Johannesen <dalej@apple.com> | 2007-07-13 17:13:54 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2007-07-13 17:13:54 +0000 |
| commit | 2182f06f2d839cfb3575a2004d066086829365c0 (patch) | |
| tree | a8c33c8af491af6b1fcde76a885ec39074b6b393 /llvm/test/CodeGen | |
| parent | f9aba2c2b470fc0926eccc8fe6ae8c7a921908ff (diff) | |
| download | bcm5719-llvm-2182f06f2d839cfb3575a2004d066086829365c0.tar.gz bcm5719-llvm-2182f06f2d839cfb3575a2004d066086829365c0.zip | |
Skeleton of post-RA scheduler; doesn't do anything yet.
Change name of -sched option and DEBUG_TYPE to
pre-RA-sched; adjust testcases.
llvm-svn: 39816
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/Generic/2006-07-03-schedulers.ll | 14 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/2007-01-13-StackPtrIndex.ll | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/Generic/2006-07-03-schedulers.ll b/llvm/test/CodeGen/Generic/2006-07-03-schedulers.ll index 70fc0731298..6edb7a05999 100644 --- a/llvm/test/CodeGen/Generic/2006-07-03-schedulers.ll +++ b/llvm/test/CodeGen/Generic/2006-07-03-schedulers.ll @@ -1,10 +1,10 @@ -; RUN: llvm-upgrade %s | llvm-as | llc -sched=none -; RUN: llvm-upgrade %s | llvm-as | llc -sched=default -; RUN: llvm-upgrade %s | llvm-as | llc -sched=simple -; RUN: llvm-upgrade %s | llvm-as | llc -sched=simple-noitin -; RUN: llvm-upgrade %s | llvm-as | llc -sched=list-td -; RUN: llvm-upgrade %s | llvm-as | llc -sched=list-tdrr -; RUN: llvm-upgrade %s | llvm-as | llc -sched=list-burr +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=none +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=default +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=simple +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=simple-noitin +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=list-td +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=list-tdrr +; RUN: llvm-upgrade %s | llvm-as | llc -pre-RA-sched=list-burr ; PR859 implementation diff --git a/llvm/test/CodeGen/X86/2007-01-13-StackPtrIndex.ll b/llvm/test/CodeGen/X86/2007-01-13-StackPtrIndex.ll index bdef507f93c..7e77cce41e7 100644 --- a/llvm/test/CodeGen/X86/2007-01-13-StackPtrIndex.ll +++ b/llvm/test/CodeGen/X86/2007-01-13-StackPtrIndex.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=x86-64 -sched=none | grep leaq -; RUN: llvm-as < %s | llc -march=x86-64 -sched=none | not grep {,%rsp)} +; RUN: llvm-as < %s | llc -march=x86-64 -pre-RA-sched=none | grep leaq +; RUN: llvm-as < %s | llc -march=x86-64 -pre-RA-sched=none | not grep {,%rsp)} ; PR1103 target datalayout = "e-p:64:64" |

