]> granicus.if.org Git - clang/commitdiff
[AVX512] Add CHECK-LABELs to test/CodeGen/avx512f-builtins.c
authorAdam Nemet <anemet@apple.com>
Mon, 28 Jul 2014 17:14:36 +0000 (17:14 +0000)
committerAdam Nemet <anemet@apple.com>
Mon, 28 Jul 2014 17:14:36 +0000 (17:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214095 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/avx512f-builtins.c

index 8d4e43dffd2583a4bd9703789e4e6282c5ecbe1d..e58a89a97c463ddd3b93ad1741e0bb168c3b4892 100644 (file)
@@ -7,24 +7,28 @@
 
 __m512d test_mm512_sqrt_pd(__m512d a)
 {
+  // CHECK-LABEL: @test_mm512_sqrt_pd
   // CHECK: @llvm.x86.avx512.sqrt.pd.512
   return _mm512_sqrt_pd(a);
 }
 
 __m512 test_mm512_sqrt_ps(__m512 a)
 {
+  // CHECK-LABEL: @test_mm512_sqrt_ps
   // CHECK: @llvm.x86.avx512.sqrt.ps.512
   return _mm512_sqrt_ps(a);
 }
 
 __m512d test_mm512_rsqrt14_pd(__m512d a)
 {
+  // CHECK-LABEL: @test_mm512_rsqrt14_pd
   // CHECK: @llvm.x86.avx512.rsqrt14.pd.512
   return _mm512_rsqrt14_pd(a);
 }
 
 __m512 test_mm512_rsqrt14_ps(__m512 a)
 {
+  // CHECK-LABEL: @test_mm512_rsqrt14_ps
   // CHECK: @llvm.x86.avx512.rsqrt14.ps.512
   return _mm512_rsqrt14_ps(a);
 }