Skip to content
This repository was archived by the owner on Jun 7, 2020. It is now read-only.

Commit

Permalink
Fix MIPS build after rust-lang#711
Browse files Browse the repository at this point in the history
  • Loading branch information
rbirdic authored and gnzlbg committed Apr 15, 2019
1 parent 2323a85 commit 29d1f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_arch/src/mips/msa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17814,7 +17814,7 @@ mod tests {
21, 22, 23, 24,
25, 26, 27, 28
];
__msa_st_b(::mem::transmute(a), arr.as_mut_ptr(), 0);
__msa_st_b(::mem::transmute(a), arr.as_mut_ptr() as *mut u8, 0);
assert_eq!(arr, r);
}

Expand Down

0 comments on commit 29d1f2e

Please sign in to comment.