File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
compiler/rustc_codegen_ssa/src Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -774,7 +774,6 @@ impl CrateInfo {
774
774
let mut info = CrateInfo {
775
775
linker_info,
776
776
local_crate_name,
777
- panic_runtime : None ,
778
777
compiler_builtins : None ,
779
778
profiler_runtime : None ,
780
779
is_no_builtins : Default :: default ( ) ,
@@ -803,9 +802,6 @@ impl CrateInfo {
803
802
. insert ( cnum, tcx. native_libraries ( cnum) . iter ( ) . map ( Into :: into) . collect ( ) ) ;
804
803
info. crate_name . insert ( cnum, tcx. crate_name ( cnum) . to_string ( ) ) ;
805
804
info. used_crate_source . insert ( cnum, tcx. used_crate_source ( cnum) ) ;
806
- if tcx. is_panic_runtime ( cnum) {
807
- info. panic_runtime = Some ( cnum) ;
808
- }
809
805
if tcx. is_compiler_builtins ( cnum) {
810
806
info. compiler_builtins = Some ( cnum) ;
811
807
}
Original file line number Diff line number Diff line change @@ -137,7 +137,6 @@ impl From<&cstore::NativeLib> for NativeLib {
137
137
pub struct CrateInfo {
138
138
pub linker_info : back:: linker:: LinkerInfo ,
139
139
pub local_crate_name : Symbol ,
140
- pub panic_runtime : Option < CrateNum > ,
141
140
pub compiler_builtins : Option < CrateNum > ,
142
141
pub profiler_runtime : Option < CrateNum > ,
143
142
pub is_no_builtins : FxHashSet < CrateNum > ,
You can’t perform that action at this time.
0 commit comments