1
Fork 0

Remove unnecessary report_symbol_names call (#113)

rustc_interface already calls it for you
This commit is contained in:
bjorn3 2021-12-30 19:27:11 +01:00 committed by Antoni Boucher
parent 92fbc8f591
commit 1411a98352

View file

@ -91,8 +91,6 @@ impl CodegenBackend for GccCodegenBackend {
let target_cpu = target_cpu(tcx.sess);
let res = codegen_crate(self.clone(), tcx, target_cpu.to_string(), metadata, need_metadata_module);
rustc_symbol_mangling::test::report_symbol_names(tcx);
Box::new(res)
}