Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Aug 31, 2018
2 parents abc9132 + 605b439 commit f3a13eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riscv32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit f3a13eb

Please sign in to comment.