Function safe_arch::load_m128d

source ·
pub fn load_m128d(a: &m128d) -> m128d
Available with target feature sse2 only.
Expand description

Loads the reference into a register.

let a = m128d::from_array([10.0, 12.0]);
let b = load_m128d(&a);
assert_eq!(a.to_bits(), b.to_bits());