Skip to content

Commit 41ac07c

Browse files
authored
Rollup merge of rust-lang#59101 - kenta7777:reduce-code-repetition, r=oli-obk
Reduces Code Repetitions like `!n >> amt` Fixes rust-lang#49937 . This PR contains defining a function which operates bit inversion and reducing bit operation like `!0u128 >> (128 - size.bits())`.
2 parents c1c5fe8 + 18b40c6 commit 41ac07c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/librustc_mir/build/matches/simplify.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ use rustc::ty;
1919
use rustc::ty::layout::{Integer, IntegerExt, Size};
2020
use syntax::attr::{SignedInt, UnsignedInt};
2121
use rustc::hir::RangeEnd;
22+
use rustc::mir::interpret::truncate;
2223

2324
use std::mem;
2425

@@ -115,14 +116,14 @@ impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
115116
ty::Int(ity) => {
116117
// FIXME(49937): refactor these bit manipulations into interpret.
117118
let size = Integer::from_attr(&tcx, SignedInt(ity)).size();
118-
let max = !0u128 >> (128 - size.bits());
119+
let max = truncate(u128::max_value(), size);
119120
let bias = 1u128 << (size.bits() - 1);
120121
(Some((0, max, size)), bias)
121122
}
122123
ty::Uint(uty) => {
123124
// FIXME(49937): refactor these bit manipulations into interpret.
124125
let size = Integer::from_attr(&tcx, UnsignedInt(uty)).size();
125-
let max = !0u128 >> (128 - size.bits());
126+
let max = truncate(u128::max_value(), size);
126127
(Some((0, max, size)), 0)
127128
}
128129
_ => (None, 0),

0 commit comments

Comments
 (0)