diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/CodeGen/builtins-ppc-altivec.c | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'test/CodeGen/builtins-ppc-altivec.c')
-rw-r--r-- | test/CodeGen/builtins-ppc-altivec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/builtins-ppc-altivec.c b/test/CodeGen/builtins-ppc-altivec.c index 9427a8a..47a198f 100644 --- a/test/CodeGen/builtins-ppc-altivec.c +++ b/test/CodeGen/builtins-ppc-altivec.c @@ -41,7 +41,7 @@ int res_i; int res_ui; int res_f; -// CHECK: define void @test1 +// CHECK-LABEL: define void @test1 void test1() { /* vec_abs */ @@ -333,7 +333,7 @@ void test1() { } -// CHECK: define void @test2 +// CHECK-LABEL: define void @test2 void test2() { /* vec_avg */ res_vsc = vec_avg(vsc, vsc); // CHECK: @llvm.ppc.altivec.vavgsb @@ -371,7 +371,7 @@ void test2() { res_vbi = vec_vcmpgefp(vf, vf); // CHECK: @llvm.ppc.altivec.vcmpgefp } -// CHECK: define void @test5 +// CHECK-LABEL: define void @test5 void test5() { /* vec_cmpgt */ @@ -394,7 +394,7 @@ void test5() { res_vbi = vec_cmple(vf, vf); // CHECK: @llvm.ppc.altivec.vcmpgefp } -// CHECK: define void @test6 +// CHECK-LABEL: define void @test6 void test6() { /* vec_cmplt */ res_vbc = vec_cmplt(vsc, vsc); // CHECK: @llvm.ppc.altivec.vcmpgtsb @@ -3055,7 +3055,7 @@ void test6() { } /* ------------------------------ Relational Operators ------------------------------ */ -// CHECK: define void @test7 +// CHECK-LABEL: define void @test7 void test7() { vector signed char vsc1 = (vector signed char)(-1); vector signed char vsc2 = (vector signed char)(-2); |