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 | b2b5dc642cbbe781f73b9da83874d4005c50bd8e (patch) | |
tree | de069755e86d024fd756be8e3bb35301ae437dbc /test/CodeGen/X86/test-nofold.ll | |
parent | 73e44d8ae4c227af92b8f96f447e4a7ed38f6de5 (diff) | |
download | external_llvm-b2b5dc642cbbe781f73b9da83874d4005c50bd8e.zip external_llvm-b2b5dc642cbbe781f73b9da83874d4005c50bd8e.tar.gz external_llvm-b2b5dc642cbbe781f73b9da83874d4005c50bd8e.tar.bz2 |
Revert "Temporarily enable MI-Sched on X86."
This reverts commit 98a9b72e8c56dc13a2617de84503a3d78352789c.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/test-nofold.ll')
-rw-r--r-- | test/CodeGen/X86/test-nofold.ll | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/X86/test-nofold.ll b/test/CodeGen/X86/test-nofold.ll index 19fbaaf..97db1b3 100644 --- a/test/CodeGen/X86/test-nofold.ll +++ b/test/CodeGen/X86/test-nofold.ll @@ -2,10 +2,10 @@ ; rdar://5752025 ; We want: -; CHECK: movl 4(%esp), %ecx -; CHECK-NEXT: andl $15, %ecx -; CHECK-NEXT: movl $42, %eax -; CHECK-NEXT: cmovel %ecx, %eax +; CHECK: movl $42, %ecx +; CHECK-NEXT: movl 4(%esp), %eax +; CHECK-NEXT: andl $15, %eax +; CHECK-NEXT: cmovnel %ecx, %eax ; CHECK-NEXT: ret ; ; We don't want: @@ -39,3 +39,4 @@ entry: %retval = select i1 %tmp4, i32 %tmp2, i32 42 ; <i32> [#uses=1] ret i32 %retval } + |