diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-07-17 00:42:37 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-07-17 00:42:37 +0000 |
commit | 63e22afdceda8e8eae59ba5ec122097e2755a522 (patch) | |
tree | 85cddae504d0b7aa7cdd67fa18ea957f7af824f3 | |
parent | f5eea529834ba1f08a2d95e51a4f49fb9766a927 (diff) | |
download | external_llvm-63e22afdceda8e8eae59ba5ec122097e2755a522.zip external_llvm-63e22afdceda8e8eae59ba5ec122097e2755a522.tar.gz external_llvm-63e22afdceda8e8eae59ba5ec122097e2755a522.tar.bz2 |
llvm/test/CodeGen/X86/vec_setcc.ll: Add explicit -mtriple=x86_64-unknown-unknown to satisfy win32-targeted configuration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186477 91177308-0d34-0410-b5e6-96231b3b80d8
-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 d1b48cf..bcfd4d3 100644 --- a/test/CodeGen/X86/vec_setcc.ll +++ b/test/CodeGen/X86/vec_setcc.ll @@ -1,6 +1,6 @@ -; 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 +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -mattr=sse2 | FileCheck %s -check-prefix=SSE2 +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -mattr=sse41 | FileCheck %s -check-prefix=SSE41 +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -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 |