Function safe_arch::load_unaligned_m128d [−][src]
Expand description
Loads the reference into a register.
This generally has no speed penalty if the reference happens to be 16-byte aligned, but there is a slight speed penalty if the reference is only 8-byte aligned.
let a = [10.0, 12.0];
let b = load_unaligned_m128d(&a);
assert_eq!(m128d::from_array(a).to_bits(), b.to_bits());