[][src]Function safe_arch::load_reverse_m128

#[must_use]pub fn load_reverse_m128(a: &m128) -> m128
This is supported with target feature sse only.

Loads the reference into a register with reversed order.

let a = m128::from_array([10.0, 12.0, 13.0, 14.0]);
let b = load_reverse_m128(&a);
assert_eq!(m128::from_array([14.0, 13.0, 12.0, 10.0]).to_bits(), b.to_bits());