[llvm] r175357 - Replace "check:" wth "CHECK:".

Jakub Staszak kubastaszak at gmail.com
Sat Feb 16 04:16:57 PST 2013


Author: kuba
Date: Sat Feb 16 06:16:56 2013
New Revision: 175357

URL: http://llvm.org/viewvc/llvm-project?rev=175357&view=rev
Log:
Replace "check:" wth "CHECK:".
Also fix one test by changing "vpermilps" to "vpshufd".

Modified:
    llvm/trunk/test/CodeGen/X86/avx-shuffle.ll

Modified: llvm/trunk/test/CodeGen/X86/avx-shuffle.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx-shuffle.ll?rev=175357&r1=175356&r2=175357&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx-shuffle.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx-shuffle.ll Sat Feb 16 06:16:56 2013
@@ -98,8 +98,8 @@ define i32 @test10(<4 x i32> %a) nounwin
 }
 
 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>*
 }
 
 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
 }





More information about the llvm-commits mailing list