[][src]Function safe_arch::store_reverse_m128

pub fn store_reverse_m128(r: &mut m128, a: m128)
This is supported with target feature sse only.

Stores the value to the reference given in reverse order.

let a = m128::from_array([10.0, 12.0, 13.0, 14.0]);
let mut b = zeroed_m128();
store_reverse_m128(&mut b, a);
let c = b.to_array();
assert_eq!(c, [14.0, 13.0, 12.0, 10.0]);