@@ -970,7 +970,7 @@ fn univariant<
970
970
let mut align = if pack. is_some ( ) { dl. i8_align } else { dl. aggregate_align } ;
971
971
let mut max_repr_align = repr. align ;
972
972
let mut inverse_memory_index: IndexVec < u32 , FieldIdx > = fields. indices ( ) . collect ( ) ;
973
- let optimize = !repr. inhibit_struct_field_reordering_opt ( ) ;
973
+ let optimize = !repr. inhibit_struct_field_reordering ( ) ;
974
974
if optimize && fields. len ( ) > 1 {
975
975
let end = if let StructKind :: MaybeUnsized = kind { fields. len ( ) - 1 } else { fields. len ( ) } ;
976
976
let optimizing = & mut inverse_memory_index. raw [ ..end] ;
@@ -1007,13 +1007,15 @@ fn univariant<
1007
1007
// Calculates a sort key to group fields by their alignment or possibly some
1008
1008
// size-derived pseudo-alignment.
1009
1009
let alignment_group_key = |layout : & F | {
1010
+ // The two branches here return values that cannot be meaningfully compared with
1011
+ // each other. However, we know that consistently for all executions of
1012
+ // `alignment_group_key`, one or the other branch will be taken, so this is okay.
1010
1013
if let Some ( pack) = pack {
1011
1014
// Return the packed alignment in bytes.
1012
1015
layout. align . abi . min ( pack) . bytes ( )
1013
1016
} else {
1014
- // Returns `log2(effective-align)`. This is ok since `pack` applies to all
1015
- // fields equally. The calculation assumes that size is an integer multiple of
1016
- // align, except for ZSTs.
1017
+ // Returns `log2(effective-align)`. The calculation assumes that size is an
1018
+ // integer multiple of align, except for ZSTs.
1017
1019
let align = layout. align . abi . bytes ( ) ;
1018
1020
let size = layout. size . bytes ( ) ;
1019
1021
let niche_size = layout. largest_niche . map ( |n| n. available ( dl) ) . unwrap_or ( 0 ) ;
0 commit comments