Skip to content

Commit da7b6b4

Browse files
committed
Avoid possible integer overflow in niche value computation
@eddyb pointed out in review that the niche value computation had a possible integer overflow problem, fixed here as he suggested.
1 parent e7c49a7 commit da7b6b4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/librustc_codegen_llvm/debuginfo/metadata.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1361,8 +1361,11 @@ impl EnumMemberDescriptionFactory<'ll, 'tcx> {
13611361
let niche_value = if i == dataful_variant {
13621362
None
13631363
} else {
1364-
Some((i.wrapping_sub(*niche_variants.start()) as u128)
1365-
.wrapping_add(niche_start) as u64)
1364+
let niche = (i as u128)
1365+
.wrapping_sub(*niche_variants.start() as u128)
1366+
.wrapping_add(niche_start);
1367+
assert_eq!(niche as u64 as u128, niche);
1368+
Some(niche as u64)
13661369
};
13671370

13681371
MemberDescription {

0 commit comments

Comments
 (0)