Skip to content

Commit

Permalink
Rollup merge of #122855 - workingjubilee:mangle-64-bit-chauvinism, r=…
Browse files Browse the repository at this point in the history
…compiler-errors

Fix Itanium mangling usizes

Arrays, surprisingly, are not sized to u64 on all platforms.

Fixes #122851.

r? ```@compiler-errors```

cc ```@maurer```
  • Loading branch information
matthiaskrgr authored Mar 22, 2024
2 parents b317cda + 861e470 commit 3164a47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,8 @@ fn encode_ty<'tcx>(
"{}",
&len.try_to_scalar()
.unwrap()
.to_u64()
.unwrap_or_else(|_| panic!("failed to convert length to u64"))
.to_target_usize(&tcx.data_layout)
.expect("Array lens are defined in usize")
);
s.push_str(&encode_ty(tcx, *ty0, dict, options));
compress(dict, DictKey::Ty(ty, TyQ::None), &mut s);
Expand Down

0 comments on commit 3164a47

Please sign in to comment.