summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/avx-shuffle.ll
diff options
context:
space:
mode:
authorJakub Staszak <kubastaszak@gmail.com>2013-02-16 12:16:56 +0000
committerJakub Staszak <kubastaszak@gmail.com>2013-02-16 12:16:56 +0000
commitf753480caa6ca410ecc3a3aad7741a40d1afdb34 (patch)
treedd4369dfdfc21edfc0dcdddc23bdfbe18ddc0344 /test/CodeGen/X86/avx-shuffle.ll
parentecc571f063eb0d6a49033fbe85ffbf0db6114f59 (diff)
downloadllvm-f753480caa6ca410ecc3a3aad7741a40d1afdb34.tar.gz
llvm-f753480caa6ca410ecc3a3aad7741a40d1afdb34.tar.bz2
llvm-f753480caa6ca410ecc3a3aad7741a40d1afdb34.tar.xz
Replace "check:" wth "CHECK:".
Also fix one test by changing "vpermilps" to "vpshufd". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/avx-shuffle.ll')
-rw-r--r--test/CodeGen/X86/avx-shuffle.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/avx-shuffle.ll b/test/CodeGen/X86/avx-shuffle.ll
index 65685a3224..73faa1fe0d 100644
--- a/test/CodeGen/X86/avx-shuffle.ll
+++ b/test/CodeGen/X86/avx-shuffle.ll
@@ -98,8 +98,8 @@ define i32 @test10(<4 x i32> %a) nounwind {
}
define <4 x float> @test11(<4 x float> %a) nounwind {
-; check: test11
-; check: vpermilps $27
+; CHECK: test11
+; CHECK: vpshufd $27
%tmp1 = shufflevector <4 x float> %a, <4 x float> undef, <4 x i32> <i32 3, i32 2, i32 1, i32 0>
ret <4 x float> %tmp1
}
@@ -113,8 +113,8 @@ define <4 x float> @test12(<4 x float>* %a) nounwind {
}
define <4 x i32> @test13(<4 x i32> %a) nounwind {
-; check: test13
-; check: vpshufd $27
+; CHECK: test13
+; CHECK: vpshufd $27
%tmp1 = shufflevector <4 x i32> %a, <4 x i32> undef, <4 x i32> <i32 3, i32 2, i32 1, i32 0>
ret <4 x i32> %tmp1
}