diff options
author | Jakub Staszak <kubastaszak@gmail.com> | 2013-02-16 12:16:56 +0000 |
---|---|---|
committer | Jakub Staszak <kubastaszak@gmail.com> | 2013-02-16 12:16:56 +0000 |
commit | 6a62c29f6b0cc5e2a616f2e8571bb572e5ead86c (patch) | |
tree | 646b38fb6f6ede5c9a03d9e9cdcc57090b2c79d0 /llvm/test | |
parent | b559b079b4a7ca7fe0462280ee5bf4fd300c775f (diff) | |
download | bcm5719-llvm-6a62c29f6b0cc5e2a616f2e8571bb572e5ead86c.tar.gz bcm5719-llvm-6a62c29f6b0cc5e2a616f2e8571bb572e5ead86c.zip |
Replace "check:" wth "CHECK:".
Also fix one test by changing "vpermilps" to "vpshufd".
llvm-svn: 175357
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/avx-shuffle.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/avx-shuffle.ll b/llvm/test/CodeGen/X86/avx-shuffle.ll index 65685a3224f..73faa1fe0d4 100644 --- a/llvm/test/CodeGen/X86/avx-shuffle.ll +++ b/llvm/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 } |