[][src]Function safe_arch::set_reversed_m128

#[must_use]pub fn set_reversed_m128(zero: f32, one: f32, two: f32, three: f32) -> m128
This is supported with target feature sse only.

Sets the args into an m128, first arg is the low lane.

let a = set_reversed_m128(1.0, 2.0, 3.0, 4.0).to_array();
let b = m128::from_array([1.0, 2.0, 3.0, 4.0]).to_array();
assert_eq!(a, b);