[][src]Function safe_arch::store_unaligned_m128d

pub fn store_unaligned_m128d(r: &mut [f64; 2], a: m128d)
This is supported with target feature sse2 only.

Stores the value to the reference given.

let a = m128d::from_array([10.0, 12.0]);
let mut b = [0.0, 0.0];
store_unaligned_m128d(&mut b, a);
assert_eq!(b, [10.0, 12.0]);