summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/break-anti-dependencies.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-09-25 21:38:11 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-09-25 21:38:11 +0000
commit483011018efec3972fb2b003d6e8b6a095e4d9e5 (patch)
tree671223816e087f1bb7e773934269baa00e712285 /test/CodeGen/X86/break-anti-dependencies.ll
parentb7a8d400be7ce9e275c6e09a2a90fbacd0566476 (diff)
downloadllvm-483011018efec3972fb2b003d6e8b6a095e4d9e5.tar.gz
llvm-483011018efec3972fb2b003d6e8b6a095e4d9e5.tar.bz2
llvm-483011018efec3972fb2b003d6e8b6a095e4d9e5.tar.xz
Flip -disable-post-RA-scheduler to -post-RA-scheduler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82803 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/break-anti-dependencies.ll')
-rw-r--r--test/CodeGen/X86/break-anti-dependencies.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/break-anti-dependencies.ll b/test/CodeGen/X86/break-anti-dependencies.ll
index fad4788893..6b245c103e 100644
--- a/test/CodeGen/X86/break-anti-dependencies.ll
+++ b/test/CodeGen/X86/break-anti-dependencies.ll
@@ -1,7 +1,7 @@
-; RUN: llc < %s -march=x86-64 -disable-post-RA-scheduler=false -break-anti-dependencies=false > %t
+; RUN: llc < %s -march=x86-64 -post-RA-scheduler -break-anti-dependencies=false > %t
; RUN: grep {%xmm0} %t | count 14
; RUN: not grep {%xmm1} %t
-; RUN: llc < %s -march=x86-64 -disable-post-RA-scheduler=false -break-anti-dependencies > %t
+; RUN: llc < %s -march=x86-64 -post-RA-scheduler -break-anti-dependencies > %t
; RUN: grep {%xmm0} %t | count 7
; RUN: grep {%xmm1} %t | count 7