@@ -15657,7 +15657,7 @@ pub unsafe fn _mm_maskz_cvttpd_epu32(k: __mmask8, a: __m128d) -> __m128i {
15657
15657
#[cfg_attr(test, assert_instr(vxorps))]
15658
15658
pub unsafe fn _mm512_setzero_pd() -> __m512d {
15659
15659
// All-0 is a properly initialized __m512d
15660
- mem::zeroed()
15660
+ const { mem::zeroed() }
15661
15661
}
15662
15662
15663
15663
/// Returns vector of type `__m512` with all elements set to zero.
@@ -15669,7 +15669,7 @@ pub unsafe fn _mm512_setzero_pd() -> __m512d {
15669
15669
#[cfg_attr(test, assert_instr(vxorps))]
15670
15670
pub unsafe fn _mm512_setzero_ps() -> __m512 {
15671
15671
// All-0 is a properly initialized __m512
15672
- mem::zeroed()
15672
+ const { mem::zeroed() }
15673
15673
}
15674
15674
15675
15675
/// Return vector of type `__m512` with all elements set to zero.
@@ -15681,7 +15681,7 @@ pub unsafe fn _mm512_setzero_ps() -> __m512 {
15681
15681
#[cfg_attr(test, assert_instr(vxorps))]
15682
15682
pub unsafe fn _mm512_setzero() -> __m512 {
15683
15683
// All-0 is a properly initialized __m512
15684
- mem::zeroed()
15684
+ const { mem::zeroed() }
15685
15685
}
15686
15686
15687
15687
/// Returns vector of type `__m512i` with all elements set to zero.
@@ -15693,7 +15693,7 @@ pub unsafe fn _mm512_setzero() -> __m512 {
15693
15693
#[cfg_attr(test, assert_instr(vxorps))]
15694
15694
pub unsafe fn _mm512_setzero_si512() -> __m512i {
15695
15695
// All-0 is a properly initialized __m512i
15696
- mem::zeroed()
15696
+ const { mem::zeroed() }
15697
15697
}
15698
15698
15699
15699
/// Return vector of type `__m512i` with all elements set to zero.
@@ -15705,7 +15705,7 @@ pub unsafe fn _mm512_setzero_si512() -> __m512i {
15705
15705
#[cfg_attr(test, assert_instr(vxorps))]
15706
15706
pub unsafe fn _mm512_setzero_epi32() -> __m512i {
15707
15707
// All-0 is a properly initialized __m512i
15708
- mem::zeroed()
15708
+ const { mem::zeroed() }
15709
15709
}
15710
15710
15711
15711
/// Sets packed 32-bit integers in `dst` with the supplied values in reverse
0 commit comments