Skip to content

Commit 0948852

Browse files
committed
add missing transmutes to ppc tests
1 parent b4d054d commit 0948852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coresimd/powerpc/altivec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ mod tests {
528528
let a: $longtype = ::mem::transmute($shorttype::new($($a),+));
529529
let b = ::mem::transmute($shorttype::new($($b),+));
530530
let c = ::mem::transmute(u8x16::new($($c),+));
531-
let d = $shorttype::new($($d),+);
531+
let d = ::mem::transmute($shorttype::new($($d),+));
532532

533533
assert_eq!(d, ::mem::transmute(vec_perm(a, b, c)));
534534
}

0 commit comments

Comments
 (0)