File tree 3 files changed +2
-12
lines changed 3 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,8 @@ macro_rules! impl_ops_scalar_shifts {
36
36
use super :: * ;
37
37
#[ cfg_attr( not( target_arch = "wasm32" ) , test) ] #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test) ]
38
38
#[ cfg_attr( any( target_arch = "s390x" , target_arch = "sparc64" ) ,
39
- allow( unreachable_code,
40
- unused_variables,
41
- unused_mut)
39
+ allow( unreachable_code, unused_variables)
42
40
) ]
43
- // ^^^ FIXME: https://github.com/rust-lang/rust/issues/55344
44
41
#[ cfg( not( target_arch = "aarch64" ) ) ]
45
42
//~^ FIXME: https://github.com/rust-lang/packed_simd/issues/317
46
43
fn ops_scalar_shifts( ) {
Original file line number Diff line number Diff line change @@ -37,11 +37,8 @@ macro_rules! impl_ops_vector_shifts {
37
37
use super :: * ;
38
38
#[ cfg_attr( not( target_arch = "wasm32" ) , test) ] #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test) ]
39
39
#[ cfg_attr( any( target_arch = "s390x" , target_arch = "sparc64" ) ,
40
- allow( unreachable_code,
41
- unused_variables,
42
- unused_mut)
40
+ allow( unreachable_code, unused_variables)
43
41
) ]
44
- // ^^^ FIXME: https://github.com/rust-lang/rust/issues/55344
45
42
#[ cfg( not( target_arch = "aarch64" ) ) ]
46
43
//~^ FIXME: https://github.com/rust-lang/packed_simd/issues/317
47
44
fn ops_vector_shifts( ) {
Original file line number Diff line number Diff line change @@ -144,8 +144,6 @@ macro_rules! impl_reduction_float_arithmetic {
144
144
#[ cfg_attr( not( target_arch = "wasm32" ) , test) ]
145
145
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test) ]
146
146
#[ allow( unreachable_code) ]
147
- #[ allow( unused_mut) ]
148
- // ^^^ FIXME: https://github.com/rust-lang/rust/issues/55344
149
147
fn sum_nan( ) {
150
148
// FIXME: https://bugs.llvm.org/show_bug.cgi?id=36732
151
149
// https://github.com/rust-lang-nursery/packed_simd/issues/6
@@ -175,8 +173,6 @@ macro_rules! impl_reduction_float_arithmetic {
175
173
#[ cfg_attr( not( target_arch = "wasm32" ) , test) ]
176
174
#[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test) ]
177
175
#[ allow( unreachable_code) ]
178
- #[ allow( unused_mut) ]
179
- // ^^^ FIXME: https://github.com/rust-lang/rust/issues/55344
180
176
fn product_nan( ) {
181
177
// FIXME: https://bugs.llvm.org/show_bug.cgi?id=36732
182
178
// https://github.com/rust-lang-nursery/packed_simd/issues/6
You can’t perform that action at this time.
0 commit comments