diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-03-05 02:38:02 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-03-05 02:38:02 +0000 |
commit | 6f9a8f85d764de6072cf1982014163fdbb672efd (patch) | |
tree | 6e353fed2e9d60192300a6ff07679fd53d832509 | |
parent | 0434dbe1fe011a47959aaf3935ffbafd4c1765d2 (diff) | |
download | bcm5719-llvm-6f9a8f85d764de6072cf1982014163fdbb672efd.tar.gz bcm5719-llvm-6f9a8f85d764de6072cf1982014163fdbb672efd.zip |
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.
llvm-svn: 127060
-rw-r--r-- | llvm/test/CodeGen/X86/vec_cast.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/vec_cast.ll b/llvm/test/CodeGen/X86/vec_cast.ll index 95289c9685a..90d39d0b46a 100644 --- a/llvm/test/CodeGen/X86/vec_cast.ll +++ b/llvm/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> |