Function load_f64_m128d_s
pub fn load_f64_m128d_s(a: &f64) -> m128d
Available on crate feature
dep_safe_arch
only.Expand description
Loads the reference into the low lane of the register.
let a = 1.0;
let b = load_f64_m128d_s(&a);
assert_eq!(m128d::from_array([1.0, 0.0]).to_bits(), b.to_bits());