File tree 1 file changed +6
-0
lines changed
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 {
527
527
}
528
528
529
529
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" ) ) ]
530
533
test_helpers:: test_unary_mask_elementwise(
531
534
& Vector :: <LANES >:: is_normal,
532
535
& Scalar :: is_normal,
@@ -535,6 +538,9 @@ macro_rules! impl_float_tests {
535
538
}
536
539
537
540
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" ) ) ]
538
544
test_helpers:: test_unary_mask_elementwise(
539
545
& Vector :: <LANES >:: is_subnormal,
540
546
& Scalar :: is_subnormal,
You can’t perform that action at this time.
0 commit comments