@@ -1853,13 +1853,15 @@ impl<'a, 'tcx> TyLayout<'tcx> {
1853
1853
ty:: TyInt ( _) |
1854
1854
ty:: TyUint ( _) |
1855
1855
ty:: TyFloat ( _) |
1856
- ty:: TyFnPtr ( _) |
1857
- ty:: TyNever |
1858
- ty:: TyFnDef ( ..) |
1859
- ty:: TyDynamic ( ..) => {
1856
+ ty:: TyFnPtr ( _) => {
1860
1857
bug ! ( "TyLayout::field_type({:?}): not applicable" , self )
1861
1858
}
1862
1859
1860
+ // ZSTs.
1861
+ ty:: TyNever |
1862
+ ty:: TyFnDef ( ..) |
1863
+ ty:: TyDynamic ( ..) => 0 ,
1864
+
1863
1865
// Potentially-fat pointers.
1864
1866
ty:: TyRef ( ..) |
1865
1867
ty:: TyRawPtr ( _) => {
@@ -1883,14 +1885,13 @@ impl<'a, 'tcx> TyLayout<'tcx> {
1883
1885
1884
1886
// ADTs.
1885
1887
ty:: TyAdt ( def, _) => {
1886
- let v = if def. is_enum ( ) {
1887
- self . variant_index . expect ( "variant index required" )
1888
- } else {
1889
- assert_eq ! ( self . variant_index, None ) ;
1888
+ let v = self . variant_index . unwrap_or ( 0 ) ;
1889
+ if def. variants . is_empty ( ) {
1890
+ assert_eq ! ( v, 0 ) ;
1890
1891
0
1891
- } ;
1892
-
1893
- def . variants [ v ] . fields . len ( )
1892
+ } else {
1893
+ def . variants [ v ] . fields . len ( )
1894
+ }
1894
1895
}
1895
1896
1896
1897
ty:: TyProjection ( _) | ty:: TyAnon ( ..) | ty:: TyParam ( _) |
@@ -1961,14 +1962,7 @@ impl<'a, 'tcx> TyLayout<'tcx> {
1961
1962
1962
1963
// ADTs.
1963
1964
ty:: TyAdt ( def, substs) => {
1964
- let v = if def. is_enum ( ) {
1965
- self . variant_index . expect ( "variant index required" )
1966
- } else {
1967
- assert_eq ! ( self . variant_index, None ) ;
1968
- 0
1969
- } ;
1970
-
1971
- def. variants [ v] . fields [ i] . ty ( tcx, substs)
1965
+ def. variants [ self . variant_index . unwrap_or ( 0 ) ] . fields [ i] . ty ( tcx, substs)
1972
1966
}
1973
1967
1974
1968
ty:: TyProjection ( _) | ty:: TyAnon ( ..) | ty:: TyParam ( _) |
0 commit comments