@@ -1310,7 +1310,6 @@ impl<'a, 'gcx, 'tcx> Layout {
1310
1310
let discr_max = ( variants. len ( ) - 1 ) as i64 ;
1311
1311
assert ! ( discr_max >= 0 ) ;
1312
1312
let ( min_ity, _) = Integer :: repr_discr ( tcx, ty, & hints[ ..] , 0 , discr_max) ;
1313
-
1314
1313
let mut align = dl. aggregate_align ;
1315
1314
let mut size = Size :: from_bytes ( 0 ) ;
1316
1315
@@ -1351,6 +1350,23 @@ impl<'a, 'gcx, 'tcx> Layout {
1351
1350
return Err ( LayoutError :: SizeOverflow ( ty) ) ;
1352
1351
}
1353
1352
1353
+ let typeck_ity = Integer :: from_attr ( dl, def. discr_ty ) ;
1354
+ if typeck_ity < min_ity {
1355
+ // It is a bug if Layout decided on a greater discriminant size than typeck for
1356
+ // some reason at this point (based on values discriminant can take on). Mostly
1357
+ // because this discriminant will be loaded, and then stored into variable of
1358
+ // type calculated by typeck. Consider such case (a bug): typeck decided on
1359
+ // byte-sized discriminant, but layout thinks we need a 16-bit to store all
1360
+ // discriminant values. That would be a bug, because then, in trans, in order
1361
+ // to store this 16-bit discriminant into 8-bit sized temporary some of the
1362
+ // space necessary to represent would have to be discarded (or layout is wrong
1363
+ // on thinking it needs 16 bits)
1364
+ bug ! ( "layout decided on a larger discriminant type ({:?}) than typeck ({:?})" ,
1365
+ min_ity, typeck_ity) ;
1366
+ // However, it is fine to make discr type however large (as an optimisation)
1367
+ // after this point – we’ll just truncate the value we load in trans.
1368
+ }
1369
+
1354
1370
// Check to see if we should use a different type for the
1355
1371
// discriminant. We can safely use a type with the same size
1356
1372
// as the alignment of the first field of each variant.
0 commit comments