File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1053,8 +1053,8 @@ pub fn _mm256_cvtsi256_si32(a: __m256i) -> i32 {
1053
1053
#[ target_feature( enable = "avx" ) ]
1054
1054
#[ cfg_attr( test, assert_instr( vzeroall) ) ]
1055
1055
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
1056
- pub unsafe fn _mm256_zeroall ( ) {
1057
- vzeroall ( )
1056
+ pub fn _mm256_zeroall ( ) {
1057
+ unsafe { vzeroall ( ) }
1058
1058
}
1059
1059
1060
1060
/// Zeroes the upper 128 bits of all YMM registers;
@@ -1065,8 +1065,8 @@ pub unsafe fn _mm256_zeroall() {
1065
1065
#[ target_feature( enable = "avx" ) ]
1066
1066
#[ cfg_attr( test, assert_instr( vzeroupper) ) ]
1067
1067
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
1068
- pub unsafe fn _mm256_zeroupper ( ) {
1069
- vzeroupper ( )
1068
+ pub fn _mm256_zeroupper ( ) {
1069
+ unsafe { vzeroupper ( ) }
1070
1070
}
1071
1071
1072
1072
/// Shuffles single-precision (32-bit) floating-point elements in `a`
You can’t perform that action at this time.
0 commit comments