mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
a3fb1d6188
This is a follow-up change to the fix for #75598. It simplifies the implementation of wrapping_neg() for all integer types by just calling 0.wrapping_sub(self) and always inlines it. This leads to much less assembly code being emitted for opt-level≤1.