[][src]Function safe_arch::load_m128i

#[must_use]pub fn load_m128i(a: &m128i) -> m128i
This is supported with target feature sse2 only.

Loads the reference into a register.

let a = m128i::from([1, 2, 3, 4]);
let b = load_m128i(&a);
assert_eq!(<[i32; 4]>::from(a), <[i32; 4]>::from(b));