We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0682c31 commit e3f0124Copy full SHA for e3f0124
crates/core_simd/src/transmute.rs
@@ -1,4 +1,5 @@
1
/// 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"))]
3
macro_rules! from_transmute {
4
{ unsafe $a:ty => $b:ty } => {
5
from_transmute!{ @impl $a => $b }
crates/core_simd/tests/f32_ops.rs
@@ -1,5 +1,3 @@
-#![feature(is_subnormal)]
-
#[macro_use]
mod ops_macros;
impl_float_tests! { SimdF32, f32, i32 }
crates/core_simd/tests/f64_ops.rs
impl_float_tests! { SimdF64, f64, i64 }
0 commit comments