Skip to content

Commit 605b439

Browse files
committed
Fix compile on riscv again
1 parent cdbad72 commit 605b439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/riscv32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ intrinsics! {
33
// https://raw.githubusercontent.com/gcc-mirror/gcc/master/libgcc/config/epiphany/mulsi3.c
44
pub extern "C" fn __mulsi3(a: u32, b: u32) -> u32 {
55
let (mut a, mut b) = (a, b);
6-
let mut r: usize = 0;
6+
let mut r = 0;
77

88
while a > 0 {
99
if a & 1 > 0 {

0 commit comments

Comments
 (0)