diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-07-16 19:22:07 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-07-16 19:22:07 +0000 |
commit | 1a9c39e52a2b1ce474dec773e77d12ae4c335a71 (patch) | |
tree | a1b73c2e1d524d6758602eae8342ad0513e9b11a /test | |
parent | 394f3b42810e906ba1d3c16e6216e5d9efa7d9d2 (diff) | |
download | external_llvm-1a9c39e52a2b1ce474dec773e77d12ae4c335a71.zip external_llvm-1a9c39e52a2b1ce474dec773e77d12ae4c335a71.tar.gz external_llvm-1a9c39e52a2b1ce474dec773e77d12ae4c335a71.tar.bz2 |
Finally, force the target for this test. Should unbreak non-x86 buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186445 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/vec_setcc.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/vec_setcc.ll b/test/CodeGen/X86/vec_setcc.ll index 501d6f8..d1b48cf 100644 --- a/test/CodeGen/X86/vec_setcc.ll +++ b/test/CodeGen/X86/vec_setcc.ll @@ -1,6 +1,6 @@ -; RUN: llc < %s -mcpu=x86-64 -mattr=sse2 | FileCheck %s -check-prefix=SSE2 -; RUN: llc < %s -mcpu=x86-64 -mattr=sse41 | FileCheck %s -check-prefix=SSE41 -; RUN: llc < %s -mcpu=x86-64 -mattr=avx | FileCheck %s -check-prefix=AVX +; RUN: llc < %s -march=x86-64 -mcpu=x86-64 -mattr=sse2 | FileCheck %s -check-prefix=SSE2 +; RUN: llc < %s -march=x86-64 -mcpu=x86-64 -mattr=sse41 | FileCheck %s -check-prefix=SSE41 +; RUN: llc < %s -march=x86-64 -mcpu=x86-64 -mattr=avx | FileCheck %s -check-prefix=AVX define <16 x i8> @v16i8_icmp_uge(<16 x i8> %a, <16 x i8> %b) nounwind readnone ssp uwtable { %1 = icmp uge <16 x i8> %a, %b |