(
&self,
tcx: TyCtxt<'_>,
cgu_name: rustc_span::Symbol,
)
| 282 | } |
| 283 | |
| 284 | fn compile_codegen_unit( |
| 285 | &self, |
| 286 | tcx: TyCtxt<'_>, |
| 287 | cgu_name: rustc_span::Symbol, |
| 288 | ) -> (rustc_codegen_ssa::ModuleCodegen<Self::Module>, u64) { |
| 289 | back::compile_codegen_unit(tcx, cgu_name) |
| 290 | } |
| 291 | |
| 292 | fn target_machine_factory( |
| 293 | &self, |
nothing calls this directly
no test coverage detected