summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/break-anti-dependencies.ll
diff options
context:
space:
mode:
authorDavid Goodwin <david_goodwin@apple.com>2009-10-20 19:54:44 +0000
committerDavid Goodwin <david_goodwin@apple.com>2009-10-20 19:54:44 +0000
commit480c529e026942f28e1a792d2cec6d6b5bc0edba (patch)
treeb5b710094f99f251014b29ca9104eb1da4597f7e /test/CodeGen/X86/break-anti-dependencies.ll
parent03d02d4faa6cf8ae1337f64bc83dcbd9de570372 (diff)
downloadexternal_llvm-480c529e026942f28e1a792d2cec6d6b5bc0edba.zip
external_llvm-480c529e026942f28e1a792d2cec6d6b5bc0edba.tar.gz
external_llvm-480c529e026942f28e1a792d2cec6d6b5bc0edba.tar.bz2
Checkpoint more aggressive anti-dependency breaking for post-ra scheduler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84658 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 6b245c1..972b3cd 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