]> granicus.if.org Git - clang/commitdiff
minor test fix
authorAsaf Badouh <asaf.badouh@intel.com>
Wed, 3 Jun 2015 13:42:46 +0000 (13:42 +0000)
committerAsaf Badouh <asaf.badouh@intel.com>
Wed, 3 Jun 2015 13:42:46 +0000 (13:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238924 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/avx512f-builtins.c

index 2f19f99e4f25740ec7d1f03958085ac9cc7cf3d7..a49a1982bf47ce05c9fd6baddcf2d0dce6b1c53a 100644 (file)
@@ -8,14 +8,14 @@
 __m512d test_mm512_sqrt_pd(__m512d a)
 {
   // CHECK-LABEL: @test_mm512_sqrt_pd
-  // CHECK: @llvm.x86.avx512.sqrt.pd.512
+  // CHECK: @llvm.x86.avx512.mask.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
+  // CHECK: @llvm.x86.avx512.mask.sqrt.ps.512
   return _mm512_sqrt_ps(a);
 }
 
@@ -898,4 +898,4 @@ __m512i test_mm512_mullo_epi32(__m512i __A, __m512i __B) {
   //CHECK-LABEL: @test_mm512_mullo_epi32
   //CHECK: mul <16 x i32>
   return _mm512_mullo_epi32(__A,__B);
-}
\ No newline at end of file
+}