pub fn load_f32_m128_s(a: &f32) -> m128
Loads the f32 reference into the low lane of the register.
f32
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());