diff options
author | Michael Liao <michael.liao@intel.com> | 2012-10-17 23:08:19 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2012-10-17 23:08:19 +0000 |
commit | 6e0c2b36d6dfe66ec394ad050f4a08252975b5ef (patch) | |
tree | 1062988174684cc046076e2a6c6b1aca81eea3b6 | |
parent | c2358eb361ee3304e553c0d283c5c3a44f28950f (diff) | |
download | external_llvm-6e0c2b36d6dfe66ec394ad050f4a08252975b5ef.zip external_llvm-6e0c2b36d6dfe66ec394ad050f4a08252975b5ef.tar.gz external_llvm-6e0c2b36d6dfe66ec394ad050f4a08252975b5ef.tar.bz2 |
Disable extract-concat test case temporarily
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166141 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/extract-concat.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/X86/extract-concat.ll b/test/CodeGen/X86/extract-concat.ll index 5c8d20a..b07cf6a 100644 --- a/test/CodeGen/X86/extract-concat.ll +++ b/test/CodeGen/X86/extract-concat.ll @@ -1,7 +1,8 @@ ; RUN: llc < %s -mcpu=corei7 -mtriple=x86_64-unknown-linux-gnu | FileCheck %s +; XFAIL: * define void @foo(<4 x float> %in, <4 x i8>* %out) { - %t0 = fptoui <4 x float> %in to <4 x i32> + %t0 = fptosi <4 x float> %in to <4 x i32> %t1 = trunc <4 x i32> %t0 to <4 x i16> %t2 = shufflevector <4 x i16> %t1, <4 x i16> undef, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7> %t3 = trunc <8 x i16> %t2 to <8 x i8> |