Browse Source

Merge remote-tracking branch 'origin/master' into HEAD

Alex Crichton 6 years ago
parent
commit
f3a13eb238
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/riscv32.rs

+ 1 - 1
src/riscv32.rs

@@ -3,7 +3,7 @@ intrinsics! {
     // https://raw.githubusercontent.com/gcc-mirror/gcc/master/libgcc/config/epiphany/mulsi3.c
     pub extern "C" fn __mulsi3(a: u32, b: u32) -> u32 {
         let (mut a, mut b) = (a, b);
-        let mut r: usize = 0;
+        let mut r = 0;
 
         while a > 0 {
             if a & 1 > 0 {