summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-03-05 02:38:02 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-03-05 02:38:02 +0000
commit89be0acecfa4fe5662c5f9e0ba501a79a041b59f (patch)
treee5366cb3de663422517735a9cbd121dc195926f9
parent1c5730facaefbacd66badea74c83571a16611bd4 (diff)
downloadllvm-89be0acecfa4fe5662c5f9e0ba501a79a041b59f.tar.gz
llvm-89be0acecfa4fe5662c5f9e0ba501a79a041b59f.tar.bz2
llvm-89be0acecfa4fe5662c5f9e0ba501a79a041b59f.tar.xz
test/CodeGen/X86/vec_cast.ll: [PR8311] Add explicit -mtriple=x86_64-linux and -mtriple=x86_64-win32. Thanks to Nadav, it might be fixed in r126424.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127060 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/vec_cast.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/vec_cast.ll b/test/CodeGen/X86/vec_cast.ll
index 95289c9685..90d39d0b46 100644
--- a/test/CodeGen/X86/vec_cast.ll
+++ b/test/CodeGen/X86/vec_cast.ll
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=x86-64 -mcpu=core2
-
+; RUN: llc < %s -mtriple=x86_64-linux -mcpu=core2
+; RUN: llc < %s -mtriple=x86_64-win32 -mcpu=core2
define <8 x i32> @a(<8 x i16> %a) nounwind {
%c = sext <8 x i16> %a to <8 x i32>