File tree 2 files changed +1
-6
lines changed
compiler/rustc_codegen_ssa/src
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -848,7 +848,6 @@ impl CrateInfo {
848
848
local_crate_name,
849
849
compiler_builtins,
850
850
profiler_runtime : None ,
851
- is_no_builtins : Default :: default ( ) ,
852
851
native_libraries : Default :: default ( ) ,
853
852
used_libraries : tcx. native_libraries ( LOCAL_CRATE ) . iter ( ) . map ( Into :: into) . collect ( ) ,
854
853
crate_name : Default :: default ( ) ,
@@ -875,9 +874,6 @@ impl CrateInfo {
875
874
if tcx. is_profiler_runtime ( cnum) {
876
875
info. profiler_runtime = Some ( cnum) ;
877
876
}
878
- if tcx. is_no_builtins ( cnum) {
879
- info. is_no_builtins . insert ( cnum) ;
880
- }
881
877
}
882
878
883
879
// Handle circular dependencies in the standard library.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ extern crate tracing;
25
25
extern crate rustc_middle;
26
26
27
27
use rustc_ast as ast;
28
- use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
28
+ use rustc_data_structures:: fx:: FxHashMap ;
29
29
use rustc_data_structures:: sync:: Lrc ;
30
30
use rustc_errors:: { DiagnosticMessage , SubdiagnosticMessage } ;
31
31
use rustc_fluent_macro:: fluent_messages;
@@ -158,7 +158,6 @@ pub struct CrateInfo {
158
158
pub local_crate_name : Symbol ,
159
159
pub compiler_builtins : Option < CrateNum > ,
160
160
pub profiler_runtime : Option < CrateNum > ,
161
- pub is_no_builtins : FxHashSet < CrateNum > ,
162
161
pub native_libraries : FxHashMap < CrateNum , Vec < NativeLib > > ,
163
162
pub crate_name : FxHashMap < CrateNum , Symbol > ,
164
163
pub used_libraries : Vec < NativeLib > ,
You can’t perform that action at this time.
0 commit comments