Skip to content

Commit

Permalink
Test vec_mradds and not vec_madds
Browse files Browse the repository at this point in the history
Typo introduced in 1d6ccad0136cd1ed97dbb83b4975d8feb6fec059
  • Loading branch information
lu-zero authored and gnzlbg committed Jun 28, 2018
1 parent 886ff38 commit 9be3699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coresimd/powerpc/altivec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 9be3699

Please sign in to comment.