Skip to content

Commit f3a13eb

Browse files
committed
Merge remote-tracking branch 'origin/master' into HEAD
2 parents abc9132 + 605b439 commit f3a13eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/riscv32.rs

+1-1
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)