]> granicus.if.org Git - clang/commitdiff
[PPC] fixes typos in builtins-ppc-p8vector.c
authorJingyue Wu <jingyue@google.com>
Sun, 28 Jun 2015 18:30:36 +0000 (18:30 +0000)
committerJingyue Wu <jingyue@google.com>
Sun, 28 Jun 2015 18:30:36 +0000 (18:30 +0000)
The extra ] causes %{{[0-9]]*}} to match only %<single digit> such as %1.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240912 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/builtins-ppc-p8vector.c

index 0c6bafad3ddb183020bdfe26e496fc0f63058629..e4964a8ebf37a0f406d7c0d474696e2512074d99 100644 (file)
@@ -33,8 +33,8 @@ void test1() {
 
   /* vec_abs */
   res_vsll = vec_abs(vsll);
-// CHECK: call <2 x i64> @llvm.ppc.altivec.vmaxsd(<2 x i64> %{{[0-9]]*}}, <2 x i64>
-// CHECK-LE: call <2 x i64> @llvm.ppc.altivec.vmaxsd(<2 x i64> %{{[0-9]]*}}, <2 x i64>
+// CHECK: call <2 x i64> @llvm.ppc.altivec.vmaxsd(<2 x i64> %{{[0-9]*}}, <2 x i64>
+// CHECK-LE: call <2 x i64> @llvm.ppc.altivec.vmaxsd(<2 x i64> %{{[0-9]*}}, <2 x i64>
 // CHECK-PPC: error: call to 'vec_abs' is ambiguous
 
   res_vd = vec_abs(vda);