You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wrapping operations for numbers, such as wrapping_mul for u32 or i32, are marked #[inline] instead of #[inline(always)]. This gives them bad performance in debug builds.
The wrapping operations for numbers, such as
wrapping_mul
for u32 or i32, are marked#[inline]
instead of#[inline(always)]
. This gives them bad performance in debug builds.Output:
1.50.0: https://rust.godbolt.org/z/b6T1eM
Nightly: https://rust.godbolt.org/z/6oMebd
The text was updated successfully, but these errors were encountered: