diff --git a/src/arith.rs b/src/arith.rs index 28873f7..1bd9079 100644 --- a/src/arith.rs +++ b/src/arith.rs @@ -429,7 +429,6 @@ fn div2(a: &mut [u128; 2]) { /// Multiply by two #[inline] -#[inline] fn mul2(a: &mut [u128; 2]) { let tmp = a[0] >> 127; a[0] <<= 1;