summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/break-anti-dependencies.ll
diff options
context:
space:
mode:
authorDavid Goodwin <david_goodwin@apple.com>2009-10-26 16:59:04 +0000
committerDavid Goodwin <david_goodwin@apple.com>2009-10-26 16:59:04 +0000
commit2e7be612d5d0eb42ee3ae08194dbb03b750cc6bf (patch)
treecf6f81efa185c765b1e3d5fbff2010d4c428f750 /test/CodeGen/X86/break-anti-dependencies.ll
parentac16d44e58e74bb0b5cecf3ec5e8d7de315f7d95 (diff)
downloadllvm-2e7be612d5d0eb42ee3ae08194dbb03b750cc6bf.tar.gz
llvm-2e7be612d5d0eb42ee3ae08194dbb03b750cc6bf.tar.bz2
llvm-2e7be612d5d0eb42ee3ae08194dbb03b750cc6bf.tar.xz
Break anti-dependence breaking out into its own class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85127 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 6b245c103e..972b3cd43c 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 -post-RA-scheduler -break-anti-dependencies=false > %t
+; RUN: llc < %s -march=x86-64 -post-RA-scheduler -break-anti-dependencies=none > %t
; RUN: grep {%xmm0} %t | count 14
; RUN: not grep {%xmm1} %t
-; RUN: llc < %s -march=x86-64 -post-RA-scheduler -break-anti-dependencies > %t
+; RUN: llc < %s -march=x86-64 -post-RA-scheduler -break-anti-dependencies=critical > %t
; RUN: grep {%xmm0} %t | count 7
; RUN: grep {%xmm1} %t | count 7