forked from OSchip/llvm-project
[AVX512] Add CHECK-LABELs to test/CodeGen/avx512f-builtins.c
llvm-svn: 214095
This commit is contained in:
parent
35ed13262d
commit
062ba618f5
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue