Function safe_arch::load_m128

source ·
pub fn load_m128(a: &m128) -> m128
Available with target feature sse only.
Expand description

Loads the reference into a register.

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