rename test
authorChris Lattner <sabre@nondot.org>
Sat, 15 Aug 2009 17:01:44 +0000 (17:01 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 15 Aug 2009 17:01:44 +0000 (17:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79113 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/sse3.ll [new file with mode: 0644]
test/CodeGen/X86/vec_shuffle-29.ll [deleted file]

diff --git a/test/CodeGen/X86/sse3.ll b/test/CodeGen/X86/sse3.ll
new file mode 100644 (file)
index 0000000..a498ac5
--- /dev/null
@@ -0,0 +1,14 @@
+; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah -o %t -f
+; RUN: not grep pextrw %t
+; RUN: grep pinsrw %t
+
+; Test for v8xi16 lowering where we extract the first element of the vector and
+; placed it in the second element of the result.
+
+define void @test_cl(<8 x i16> addrspace(1)* %dest, <8 x i16> addrspace(1)* %old) nounwind {
+entry:
+       %tmp3 = load <8 x i16> addrspace(1)* %old               ; <<8 x i16>> [#uses=1]
+       %tmp6 = shufflevector <8 x i16> %tmp3, <8 x i16> < i16 0, i16 undef, i16 undef, i16 undef, i16 undef, i16 undef, i16 undef, i16 undef >, <8 x i32> < i32 8, i32 0, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef  >          ; <<8 x i16>> [#uses=1]
+       store <8 x i16> %tmp6, <8 x i16> addrspace(1)* %dest
+       ret void
+}
\ No newline at end of file
diff --git a/test/CodeGen/X86/vec_shuffle-29.ll b/test/CodeGen/X86/vec_shuffle-29.ll
deleted file mode 100644 (file)
index a498ac5..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah -o %t -f
-; RUN: not grep pextrw %t
-; RUN: grep pinsrw %t
-
-; Test for v8xi16 lowering where we extract the first element of the vector and
-; placed it in the second element of the result.
-
-define void @test_cl(<8 x i16> addrspace(1)* %dest, <8 x i16> addrspace(1)* %old) nounwind {
-entry:
-       %tmp3 = load <8 x i16> addrspace(1)* %old               ; <<8 x i16>> [#uses=1]
-       %tmp6 = shufflevector <8 x i16> %tmp3, <8 x i16> < i16 0, i16 undef, i16 undef, i16 undef, i16 undef, i16 undef, i16 undef, i16 undef >, <8 x i32> < i32 8, i32 0, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef  >          ; <<8 x i16>> [#uses=1]
-       store <8 x i16> %tmp6, <8 x i16> addrspace(1)* %dest
-       ret void
-}
\ No newline at end of file