diff options
author | Jingyue Wu <jingyue@google.com> | 2015-06-28 18:30:36 +0000 |
---|---|---|
committer | Jingyue Wu <jingyue@google.com> | 2015-06-28 18:30:36 +0000 |
commit | 5126186b32f16cf7caccd740cb12fbc8ff04ddf9 (patch) | |
tree | 0820d158b98e88af046332d27fb7efc5df6d1600 /clang/test/CodeGen/builtins-ppc-p8vector.c | |
parent | 8ebce8f12b584cebcb2f96eb28f46d5587395e33 (diff) | |
download | bcm5719-llvm-5126186b32f16cf7caccd740cb12fbc8ff04ddf9.tar.gz bcm5719-llvm-5126186b32f16cf7caccd740cb12fbc8ff04ddf9.zip |
[PPC] fixes typos in builtins-ppc-p8vector.c
The extra ] causes %{{[0-9]]*}} to match only %<single digit> such as %1.
llvm-svn: 240912
Diffstat (limited to 'clang/test/CodeGen/builtins-ppc-p8vector.c')
-rw-r--r-- | clang/test/CodeGen/builtins-ppc-p8vector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/builtins-ppc-p8vector.c b/clang/test/CodeGen/builtins-ppc-p8vector.c index 0c6bafad3dd..e4964a8ebf3 100644 --- a/clang/test/CodeGen/builtins-ppc-p8vector.c +++ b/clang/test/CodeGen/builtins-ppc-p8vector.c @@ -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); |