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

master
Alex Crichton 2018-08-31 16:00:25 -07:00
commit f3a13eb238
1 changed files with 1 additions and 1 deletions

View File

@ -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 {