(
cgcx: &CodegenContext<Self>,
thin_module: &mut ThinModule<Self>,
)
| 211 | } |
| 212 | |
| 213 | unsafe fn optimize_thin( |
| 214 | cgcx: &CodegenContext<Self>, |
| 215 | thin_module: &mut ThinModule<Self>, |
| 216 | ) -> Result<ModuleCodegen<Self::Module>, FatalError> { |
| 217 | lto::optimize_thin(cgcx, thin_module) |
| 218 | } |
| 219 | |
| 220 | unsafe fn codegen( |
| 221 | cgcx: &CodegenContext<Self>, |
nothing calls this directly
no test coverage detected