@@ -29616,7 +29616,9 @@ pub unsafe fn _mm512_mask_reduce_or_epi64(k: __mmask8, a: __m512i) -> i64 {
2961629616 ))
2961729617}
2961829618
29619- /// Returns vector of type `__m512d` with undefined elements.
29619+ /// Returns vector of type `__m512d` with indeterminate elements.
29620+ /// Despite being "undefined", this is some valid value and not equivalent to [`mem::MaybeUninit`].
29621+ /// In practice, this is equivalent to [`mem::zeroed`].
2962029622///
2962129623/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_undefined_pd)
2962229624#[inline]
@@ -29626,7 +29628,9 @@ pub unsafe fn _mm512_undefined_pd() -> __m512d {
2962629628 _mm512_set1_pd(0.0)
2962729629}
2962829630
29629- /// Returns vector of type `__m512` with undefined elements.
29631+ /// Returns vector of type `__m512` with indeterminate elements.
29632+ /// Despite being "undefined", this is some valid value and not equivalent to [`mem::MaybeUninit`].
29633+ /// In practice, this is equivalent to [`mem::zeroed`].
2963029634///
2963129635/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_undefined_ps)
2963229636#[inline]
@@ -29636,7 +29640,9 @@ pub unsafe fn _mm512_undefined_ps() -> __m512 {
2963629640 _mm512_set1_ps(0.0)
2963729641}
2963829642
29639- /// Return vector of type __m512i with undefined elements.
29643+ /// Return vector of type __m512i with indeterminate elements.
29644+ /// Despite being "undefined", this is some valid value and not equivalent to [`mem::MaybeUninit`].
29645+ /// In practice, this is equivalent to [`mem::zeroed`].
2964029646///
2964129647/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_undefined_epi32&expand=5995)
2964229648#[inline]
@@ -29646,7 +29652,9 @@ pub unsafe fn _mm512_undefined_epi32() -> __m512i {
2964629652 _mm512_set1_epi32(0)
2964729653}
2964829654
29649- /// Return vector of type __m512 with undefined elements.
29655+ /// Return vector of type __m512 with indeterminate elements.
29656+ /// Despite being "undefined", this is some valid value and not equivalent to [`mem::MaybeUninit`].
29657+ /// In practice, this is equivalent to [`mem::zeroed`].
2965029658///
2965129659/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm512_undefined&expand=5994)
2965229660#[inline]
0 commit comments