Skip to content

Commit 50af62d

Browse files
committed
removed some unnecessary comments.
1 parent 12e3e84 commit 50af62d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/librustc_mir/build/matches/simplify.rs

-2
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,12 @@ impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
114114
(Some(('\u{0000}' as u128, '\u{10FFFF}' as u128, Size::from_bits(32))), 0)
115115
}
116116
ty::Int(ity) => {
117-
// FIXME(49937): refactor these bit manipulations into interpret.
118117
let size = Integer::from_attr(&tcx, SignedInt(ity)).size();
119118
let max = truncate(u128::max_value(), size);
120119
let bias = 1u128 << (size.bits() - 1);
121120
(Some((0, max, size)), bias)
122121
}
123122
ty::Uint(uty) => {
124-
// FIXME(49937): refactor these bit manipulations into interpret.
125123
let size = Integer::from_attr(&tcx, UnsignedInt(uty)).size();
126124
let max = truncate(u128::max_value(), size);
127125
(Some((0, max, size)), 0)

0 commit comments

Comments
 (0)