@@ -15717,7 +15717,7 @@ pub unsafe fn _mm_maskz_cvttpd_epu32(k: __mmask8, a: __m128d) -> __m128i {
15717
15717
#[cfg_attr(test, assert_instr(vxorps))]
15718
15718
pub unsafe fn _mm512_setzero_pd() -> __m512d {
15719
15719
// All-0 is a properly initialized __m512d
15720
- mem::zeroed()
15720
+ const { mem::zeroed() }
15721
15721
}
15722
15722
15723
15723
/// Returns vector of type `__m512` with all elements set to zero.
@@ -15729,7 +15729,7 @@ pub unsafe fn _mm512_setzero_pd() -> __m512d {
15729
15729
#[cfg_attr(test, assert_instr(vxorps))]
15730
15730
pub unsafe fn _mm512_setzero_ps() -> __m512 {
15731
15731
// All-0 is a properly initialized __m512
15732
- mem::zeroed()
15732
+ const { mem::zeroed() }
15733
15733
}
15734
15734
15735
15735
/// Return vector of type `__m512` with all elements set to zero.
@@ -15741,7 +15741,7 @@ pub unsafe fn _mm512_setzero_ps() -> __m512 {
15741
15741
#[cfg_attr(test, assert_instr(vxorps))]
15742
15742
pub unsafe fn _mm512_setzero() -> __m512 {
15743
15743
// All-0 is a properly initialized __m512
15744
- mem::zeroed()
15744
+ const { mem::zeroed() }
15745
15745
}
15746
15746
15747
15747
/// Returns vector of type `__m512i` with all elements set to zero.
@@ -15753,7 +15753,7 @@ pub unsafe fn _mm512_setzero() -> __m512 {
15753
15753
#[cfg_attr(test, assert_instr(vxorps))]
15754
15754
pub unsafe fn _mm512_setzero_si512() -> __m512i {
15755
15755
// All-0 is a properly initialized __m512i
15756
- mem::zeroed()
15756
+ const { mem::zeroed() }
15757
15757
}
15758
15758
15759
15759
/// Return vector of type `__m512i` with all elements set to zero.
@@ -15765,7 +15765,7 @@ pub unsafe fn _mm512_setzero_si512() -> __m512i {
15765
15765
#[cfg_attr(test, assert_instr(vxorps))]
15766
15766
pub unsafe fn _mm512_setzero_epi32() -> __m512i {
15767
15767
// All-0 is a properly initialized __m512i
15768
- mem::zeroed()
15768
+ const { mem::zeroed() }
15769
15769
}
15770
15770
15771
15771
/// Sets packed 32-bit integers in `dst` with the supplied values in reverse
0 commit comments