File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -527,6 +527,9 @@ macro_rules! impl_float_tests {
527527 }
528528
529529 fn is_normal<const LANES : usize >( ) {
530+ // Arm v7 Neon violates float opsem re: subnormals, see
531+ // https://github.com/rust-lang/portable-simd/issues/439
532+ #[ cfg( not( target_arch = "arm" ) ) ]
530533 test_helpers:: test_unary_mask_elementwise(
531534 & Vector :: <LANES >:: is_normal,
532535 & Scalar :: is_normal,
@@ -535,6 +538,9 @@ macro_rules! impl_float_tests {
535538 }
536539
537540 fn is_subnormal<const LANES : usize >( ) {
541+ // Arm v7 Neon violates float opsem re: subnormals, see
542+ // https://github.com/rust-lang/portable-simd/issues/439
543+ #[ cfg( not( target_arch = "arm" ) ) ]
538544 test_helpers:: test_unary_mask_elementwise(
539545 & Vector :: <LANES >:: is_subnormal,
540546 & Scalar :: is_subnormal,
You can’t perform that action at this time.
0 commit comments