diff options
author | Manman Ren <mren@apple.com> | 2012-07-29 02:44:09 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2012-07-29 02:44:09 +0000 |
commit | f87dd7c01bf5758bec6086cbcf48009b078f52fb (patch) | |
tree | 09fe5a92753dafbbfeeed8f41f1eb0d63030e6ea /llvm/test/CodeGen/X86/vec_compare.ll | |
parent | d2c3bdd2699a5938d92c4dbb50c7e74065c9a03b (diff) | |
download | bcm5719-llvm-f87dd7c01bf5758bec6086cbcf48009b078f52fb.tar.gz bcm5719-llvm-f87dd7c01bf5758bec6086cbcf48009b078f52fb.zip |
Revert r160920 and r160919 due to dragonegg and clang selfhost failure
llvm-svn: 160927
Diffstat (limited to 'llvm/test/CodeGen/X86/vec_compare.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vec_compare.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/vec_compare.ll b/llvm/test/CodeGen/X86/vec_compare.ll index 1e04f19ee89..39c9b770d5f 100644 --- a/llvm/test/CodeGen/X86/vec_compare.ll +++ b/llvm/test/CodeGen/X86/vec_compare.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 -mcpu=yonah -mtriple=i386-apple-darwin | FileCheck %s +; RUN: llc < %s -march=x86 -mcpu=yonah | FileCheck %s define <4 x i32> @test1(<4 x i32> %A, <4 x i32> %B) nounwind { @@ -14,8 +14,8 @@ define <4 x i32> @test1(<4 x i32> %A, <4 x i32> %B) nounwind { define <4 x i32> @test2(<4 x i32> %A, <4 x i32> %B) nounwind { ; CHECK: test2: ; CHECK: pcmp -; CHECK: pxor LCP -; CHECK: movdqa +; CHECK: pcmp +; CHECK: pxor ; CHECK: ret %C = icmp sge <4 x i32> %A, %B %D = sext <4 x i1> %C to <4 x i32> |