fix for the issue #92464
This commit is contained in:
parent
38c22af015
commit
fd5be23a96
2 changed files with 19 additions and 1 deletions
|
@ -1310,7 +1310,10 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
|
|||
},
|
||||
};
|
||||
let mut abi = Abi::Aggregate { sized: true };
|
||||
if tag.value.size(dl) == size {
|
||||
|
||||
// Without latter check aligned enums with custom discriminant values
|
||||
// Would result in ICE see the issue #92464 for more info
|
||||
if tag.value.size(dl) == size || variants.iter().all(|layout| layout.is_empty()) {
|
||||
abi = Abi::Scalar(tag);
|
||||
} else {
|
||||
// Try to use a ScalarPair for all tagged enums.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue