diff options
author | Andrew Trick <atrick@apple.com> | 2013-06-25 02:48:58 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-06-25 02:48:58 +0000 |
commit | 121124acf8d89a14e4a53b8c8f415a60291fc1ec (patch) | |
tree | 65adc780fbf06415da02b8130814578f260f4e5f /llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll | |
parent | 0125f2a6e4537576b5383bcac32e0278d184467a (diff) | |
download | bcm5719-llvm-121124acf8d89a14e4a53b8c8f415a60291fc1ec.tar.gz bcm5719-llvm-121124acf8d89a14e4a53b8c8f415a60291fc1ec.zip |
Revert "Temporarily enable MI-Sched on X86."
This reverts commit 98a9b72e8c56dc13a2617de84503a3d78352789c.
llvm-svn: 184823
Diffstat (limited to 'llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll b/llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll index 3dee2ec89c1..8a81f70a8a2 100644 --- a/llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll +++ b/llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll @@ -2,12 +2,12 @@ ; RUN: llc -mtriple=x86_64-darwin -mcpu=atom < %s | FileCheck -check-prefix=ATOM %s ; CHECK: t: -; CHECK: movl (%r9,%rax,4), %e{{..}} -; CHECK-NEXT: decq +; CHECK: decq +; CHECK-NEXT: movl (%r9,%rax,4), %eax ; CHECK-NEXT: jne ; ATOM: t: -; ATOM: movl (%r9,%rax,4), %e{{..}} +; ATOM: movl (%r9,%rax,4), %eax ; ATOM-NEXT: decq ; ATOM-NEXT: jne @@ -190,3 +190,4 @@ for.end: ; preds = %for.body, %entry %bi.0.lcssa = phi i32 [ 0, %entry ], [ %i.addr.0.bi.0, %for.body ] ret i32 %bi.0.lcssa } + |