Skip to content

Commit 5e47ca2

Browse files
author
Jorge Aparicio
committed
rename muldi4 to muldi3
closes #42
1 parent 74cd512 commit 5e47ca2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mul.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ macro_rules! mulo {
6666
}
6767
}
6868

69-
mul!(__muldi4: u64);
69+
mul!(__muldi3: u64);
7070
mulo!(__mulosi4: i32);
7171
mulo!(__mulodi4: i64);
7272

@@ -77,7 +77,7 @@ mod tests {
7777
quickcheck! {
7878
fn muldi(a: U64, b: U64) -> bool {
7979
let (a, b) = (a.0, b.0);
80-
let r = super::__muldi4(a, b);
80+
let r = super::__muldi3(a, b);
8181
r == a.wrapping_mul(b)
8282
}
8383

0 commit comments

Comments
 (0)