@@ -40,7 +40,6 @@ use std::io::prelude::*;
40
40
use std:: io:: { Cursor , SeekFrom } ;
41
41
use std:: rc:: Rc ;
42
42
use std:: u32;
43
- use syntax:: abi:: Abi ;
44
43
use syntax:: ast:: { self , NodeId , Name , CRATE_NODE_ID , CrateNum } ;
45
44
use syntax:: attr:: { self , AttrMetaMethods , AttributeMethods } ;
46
45
use errors:: Handler ;
@@ -626,11 +625,6 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
626
625
627
626
if body. is_some ( ) {
628
627
encode_item_sort ( self . rbml_w , 'p' ) ;
629
- encode_inlined_item ( ecx,
630
- self . rbml_w ,
631
- InlinedItemRef :: TraitItem (
632
- trait_def_id,
633
- trait_item) ) ;
634
628
self . encode_mir ( trait_item. id ) ;
635
629
} else {
636
630
encode_item_sort ( self . rbml_w , 'r' ) ;
@@ -728,12 +722,14 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
728
722
let types = generics. parent_types as usize + generics. types . len ( ) ;
729
723
let needs_inline = types > 0 || is_default_impl ||
730
724
attr:: requests_inline ( & impl_item. attrs ) ;
731
- if needs_inline || sig. constness == hir:: Constness :: Const {
725
+ if sig. constness == hir:: Constness :: Const {
732
726
encode_inlined_item (
733
727
ecx,
734
728
self . rbml_w ,
735
729
InlinedItemRef :: ImplItem ( ecx. tcx . map . local_def_id ( parent_id) ,
736
730
impl_item) ) ;
731
+ }
732
+ if needs_inline || sig. constness == hir:: Constness :: Const {
737
733
self . encode_mir ( impl_item. id ) ;
738
734
}
739
735
encode_constness ( self . rbml_w , sig. constness ) ;
@@ -934,8 +930,10 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
934
930
encode_name ( self . rbml_w , item. name ) ;
935
931
encode_attributes ( self . rbml_w , & item. attrs ) ;
936
932
let needs_inline = tps_len > 0 || attr:: requests_inline ( & item. attrs ) ;
937
- if needs_inline || constness == hir:: Constness :: Const {
933
+ if constness == hir:: Constness :: Const {
938
934
encode_inlined_item ( ecx, self . rbml_w , InlinedItemRef :: Item ( def_id, item) ) ;
935
+ }
936
+ if needs_inline || constness == hir:: Constness :: Const {
939
937
self . encode_mir ( item. id ) ;
940
938
}
941
939
encode_constness ( self . rbml_w , constness) ;
@@ -982,8 +980,6 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
982
980
for v in & enum_definition. variants {
983
981
encode_variant_id ( self . rbml_w , ecx. tcx . map . local_def_id ( v. node . data . id ( ) ) ) ;
984
982
}
985
- encode_inlined_item ( ecx, self . rbml_w , InlinedItemRef :: Item ( def_id, item) ) ;
986
- self . encode_mir ( item. id ) ;
987
983
988
984
// Encode inherent implementations for self enumeration.
989
985
encode_inherent_implementations ( ecx, self . rbml_w , def_id) ;
@@ -1019,9 +1015,6 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
1019
1015
needs to know*/
1020
1016
self . encode_struct_fields ( variant) ;
1021
1017
1022
- encode_inlined_item ( ecx, self . rbml_w , InlinedItemRef :: Item ( def_id, item) ) ;
1023
- self . encode_mir ( item. id ) ;
1024
-
1025
1018
// Encode inherent implementations for self structure.
1026
1019
encode_inherent_implementations ( ecx, self . rbml_w , def_id) ;
1027
1020
@@ -1265,7 +1258,6 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
1265
1258
let ecx = self . ecx ( ) ;
1266
1259
1267
1260
debug ! ( "writing foreign item {}" , ecx. tcx. node_path_str( nitem. id) ) ;
1268
- let abi = ecx. tcx . map . get_foreign_abi ( nitem. id ) ;
1269
1261
1270
1262
encode_def_id_and_key ( ecx, self . rbml_w , def_id) ;
1271
1263
let parent_id = ecx. tcx . map . get_parent ( nitem. id ) ;
@@ -1276,12 +1268,6 @@ impl<'a, 'tcx, 'encoder> ItemContentBuilder<'a, 'tcx, 'encoder> {
1276
1268
encode_family ( self . rbml_w , FN_FAMILY ) ;
1277
1269
self . encode_bounds_and_type_for_item ( nitem. id ) ;
1278
1270
encode_name ( self . rbml_w , nitem. name ) ;
1279
- if abi == Abi :: RustIntrinsic || abi == Abi :: PlatformIntrinsic {
1280
- encode_inlined_item ( ecx,
1281
- self . rbml_w ,
1282
- InlinedItemRef :: Foreign ( def_id, nitem) ) ;
1283
- self . encode_mir ( nitem. id ) ;
1284
- }
1285
1271
encode_attributes ( self . rbml_w , & nitem. attrs ) ;
1286
1272
let stab = ecx. tcx . lookup_stability ( ecx. tcx . map . local_def_id ( nitem. id ) ) ;
1287
1273
let depr = ecx. tcx . lookup_deprecation ( ecx. tcx . map . local_def_id ( nitem. id ) ) ;
0 commit comments