We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abc9132 + 605b439 commit f3a13ebCopy full SHA for f3a13eb
src/riscv32.rs
@@ -3,7 +3,7 @@ intrinsics! {
3
// https://raw.githubusercontent.com/gcc-mirror/gcc/master/libgcc/config/epiphany/mulsi3.c
4
pub extern "C" fn __mulsi3(a: u32, b: u32) -> u32 {
5
let (mut a, mut b) = (a, b);
6
- let mut r: usize = 0;
+ let mut r = 0;
7
8
while a > 0 {
9
if a & 1 > 0 {
0 commit comments