Test vec_mradds and not vec_madds

Typo introduced in 1d6ccad0136cd1ed97dbb83b4975d8feb6fec059
This commit is contained in:
Luca Barbato 2018-06-28 01:53:15 +00:00 committed by gnzlbg
parent 5c00a2b2a4
commit 22d5f8ca33

View file

@ -901,7 +901,7 @@ mod tests {
let d = i16x8::new(0, 3, 6, 9, 12, 15, 18, i16::max_value());
assert_eq!(d, vec_madds(a, b, c).into_bits());
assert_eq!(d, vec_mradds(a, b, c).into_bits());
}
#[simd_test(enable = "altivec")]