aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/sink-hoist.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-10-18 19:57:27 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-10-18 19:57:27 +0000
commitd36076e4a3a57f55c044cd1cf21a39abe1edf2de (patch)
treee7ca5e48865369ab6816f2ceb1a7855e426ce8cf /test/CodeGen/X86/sink-hoist.ll
parenteb6e1daa4379f5d2a27ba487cbd6c5fc8d125d71 (diff)
downloadexternal_llvm-d36076e4a3a57f55c044cd1cf21a39abe1edf2de.zip
external_llvm-d36076e4a3a57f55c044cd1cf21a39abe1edf2de.tar.gz
external_llvm-d36076e4a3a57f55c044cd1cf21a39abe1edf2de.tar.bz2
Turn on post-alloc scheduling for x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/sink-hoist.ll')
-rw-r--r--test/CodeGen/X86/sink-hoist.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/sink-hoist.ll b/test/CodeGen/X86/sink-hoist.ll
index 0f4e63f..4042a09 100644
--- a/test/CodeGen/X86/sink-hoist.ll
+++ b/test/CodeGen/X86/sink-hoist.ll
@@ -6,10 +6,10 @@
; that it's conditionally evaluated.
; CHECK: foo:
-; CHECK-NEXT: divsd
-; CHECK: testb $1, %dil
-; CHECK-NEXT: jne
; CHECK: divsd
+; CHECK-NEXT: testb $1, %dil
+; CHECK-NEXT: jne
+; CHECK-NEXT: divsd
define double @foo(double %x, double %y, i1 %c) nounwind {
%a = fdiv double %x, 3.2