Update crates/core_arch/src/acle/simd32.rs

Co-Authored-By: japaric <jorge@japaric.io>
This commit is contained in:
Mateusz Mikuła 2019-02-18 16:45:02 +01:00 committed by gnzlbg
parent 3957baad18
commit 640eb3874e

View file

@ -420,7 +420,7 @@ pub unsafe fn __usad8(a: int8x4_t, b: int8x4_t) -> u32 {
#[inline]
#[cfg_attr(test, assert_instr(usad8))]
pub unsafe fn __usada8(a: int8x4_t, b: int8x4_t, c: u32) -> u32 {
usad8(a, b) + c
__usad8(a, b) + c
}
#[cfg(test)]