File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10254,7 +10254,7 @@ pub fn _cvtu32_mask32(a: u32) -> __mmask32 {
1025410254#[target_feature(enable = "avx512bw")]
1025510255#[stable(feature = "stdarch_x86_avx512", since = "1.89")]
1025610256pub fn _kadd_mask32(a: __mmask32, b: __mmask32) -> __mmask32 {
10257- a + b
10257+ a.wrapping_add(b)
1025810258}
1025910259
1026010260/// Add 64-bit masks in a and b, and store the result in k.
@@ -10264,7 +10264,7 @@ pub fn _kadd_mask32(a: __mmask32, b: __mmask32) -> __mmask32 {
1026410264#[target_feature(enable = "avx512bw")]
1026510265#[stable(feature = "stdarch_x86_avx512", since = "1.89")]
1026610266pub fn _kadd_mask64(a: __mmask64, b: __mmask64) -> __mmask64 {
10267- a + b
10267+ a.wrapping_add(b)
1026810268}
1026910269
1027010270/// Compute the bitwise AND of 32-bit masks a and b, and store the result in k.
Original file line number Diff line number Diff line change @@ -4486,7 +4486,7 @@ pub fn _cvtu32_mask8(a: u32) -> __mmask8 {
44864486#[ target_feature( enable = "avx512dq" ) ]
44874487#[ stable( feature = "stdarch_x86_avx512" , since = "1.89" ) ]
44884488pub fn _kadd_mask16 ( a : __mmask16 , b : __mmask16 ) -> __mmask16 {
4489- a + b
4489+ a. wrapping_add ( b )
44904490}
44914491
44924492/// Add 8-bit masks a and b, and store the result in dst.
@@ -4496,7 +4496,7 @@ pub fn _kadd_mask16(a: __mmask16, b: __mmask16) -> __mmask16 {
44964496#[ target_feature( enable = "avx512dq" ) ]
44974497#[ stable( feature = "stdarch_x86_avx512" , since = "1.89" ) ]
44984498pub fn _kadd_mask8 ( a : __mmask8 , b : __mmask8 ) -> __mmask8 {
4499- a + b
4499+ a. wrapping_add ( b )
45004500}
45014501
45024502/// Bitwise AND of 8-bit masks a and b, and store the result in dst.
You can’t perform that action at this time.
0 commit comments