diff options
author | Andrew Trick <atrick@apple.com> | 2013-06-24 09:13:20 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2013-06-24 09:13:20 +0000 |
commit | 5a1e0af83865667cd3381cb4a13c08176c15f7d3 (patch) | |
tree | 0c2e2278ddc125c2f9268baeee5901b1e8254afb /llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll | |
parent | b8cd986b5d8f7970f0b632c94c171a4e22f299fe (diff) | |
download | bcm5719-llvm-5a1e0af83865667cd3381cb4a13c08176c15f7d3.tar.gz bcm5719-llvm-5a1e0af83865667cd3381cb4a13c08176c15f7d3.zip |
Temporarily enable MI-Sched on X86.
Sorry for the unit test churn. I'll try to make the change permanently
next time.
llvm-svn: 184705
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, 3 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll b/llvm/test/CodeGen/X86/lsr-loop-exit-cond.ll index 8a81f70a8a2..3dee2ec89c1 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: decq -; CHECK-NEXT: movl (%r9,%rax,4), %eax +; CHECK: movl (%r9,%rax,4), %e{{..}} +; CHECK-NEXT: decq ; CHECK-NEXT: jne ; ATOM: t: -; ATOM: movl (%r9,%rax,4), %eax +; ATOM: movl (%r9,%rax,4), %e{{..}} ; ATOM-NEXT: decq ; ATOM-NEXT: jne @@ -190,4 +190,3 @@ 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 } - |