Skip to content

Commit e3f0124

Browse files
Silence warnings
1 parent 0682c31 commit e3f0124

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

crates/core_simd/src/transmute.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/// Provides implementations of `From<$a> for $b` and `From<$b> for $a` that transmutes the value.
2+
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
23
macro_rules! from_transmute {
34
{ unsafe $a:ty => $b:ty } => {
45
from_transmute!{ @impl $a => $b }

crates/core_simd/tests/f32_ops.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(is_subnormal)]
2-
31
#[macro_use]
42
mod ops_macros;
53
impl_float_tests! { SimdF32, f32, i32 }

crates/core_simd/tests/f64_ops.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(is_subnormal)]
2-
31
#[macro_use]
42
mod ops_macros;
53
impl_float_tests! { SimdF64, f64, i64 }

0 commit comments

Comments
 (0)