@@ -35,20 +35,20 @@ pub const _MM_FROUND_NO_EXC: i32 = 0x08;
35
35
pub const _MM_FROUND_NINT: i32 = 0x00 ;
36
36
/// round down and do not suppress exceptions
37
37
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
38
- pub const _MM_FROUND_FLOOR: i32 = ( _MM_FROUND_RAISE_EXC | _MM_FROUND_TO_NEG_INF) ;
38
+ pub const _MM_FROUND_FLOOR: i32 = _MM_FROUND_RAISE_EXC | _MM_FROUND_TO_NEG_INF;
39
39
/// round up and do not suppress exceptions
40
40
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
41
- pub const _MM_FROUND_CEIL: i32 = ( _MM_FROUND_RAISE_EXC | _MM_FROUND_TO_POS_INF) ;
41
+ pub const _MM_FROUND_CEIL: i32 = _MM_FROUND_RAISE_EXC | _MM_FROUND_TO_POS_INF;
42
42
/// truncate and do not suppress exceptions
43
43
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
44
- pub const _MM_FROUND_TRUNC: i32 = ( _MM_FROUND_RAISE_EXC | _MM_FROUND_TO_ZERO) ;
44
+ pub const _MM_FROUND_TRUNC: i32 = _MM_FROUND_RAISE_EXC | _MM_FROUND_TO_ZERO;
45
45
/// use MXCSR.RC and do not suppress exceptions; see
46
46
/// `vendor::_MM_SET_ROUNDING_MODE`
47
47
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
48
- pub const _MM_FROUND_RINT: i32 = ( _MM_FROUND_RAISE_EXC | _MM_FROUND_CUR_DIRECTION) ;
48
+ pub const _MM_FROUND_RINT: i32 = _MM_FROUND_RAISE_EXC | _MM_FROUND_CUR_DIRECTION;
49
49
/// use MXCSR.RC and suppress exceptions; see `vendor::_MM_SET_ROUNDING_MODE`
50
50
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
51
- pub const _MM_FROUND_NEARBYINT: i32 = ( _MM_FROUND_NO_EXC | _MM_FROUND_CUR_DIRECTION) ;
51
+ pub const _MM_FROUND_NEARBYINT: i32 = _MM_FROUND_NO_EXC | _MM_FROUND_CUR_DIRECTION;
52
52
53
53
/// Blend packed 8-bit integers from `a` and `b` using `mask`
54
54
///
0 commit comments