Function safe_arch::load_f32_m128_s
source ยท pub fn load_f32_m128_s(a: &f32) -> m128
Available with target feature
sse
only.Expand description
Loads the f32
reference into the low lane of the register.
let a = 1.0;
let b = load_f32_m128_s(&a);
assert_eq!(m128::from_array([1.0, 0.0, 0.0, 0.0]).to_bits(), b.to_bits());