Remove an unnecessary pub.

This commit is contained in:
Nicholas Nethercote 2023-07-20 14:33:27 +10:00
parent f81fe9d702
commit 8b9e3f0dd6

View File

@ -2057,7 +2057,7 @@ pub fn submit_pre_lto_module_to_llvm<B: ExtraBackendMethods>(
})));
}
pub fn pre_lto_bitcode_filename(module_name: &str) -> String {
fn pre_lto_bitcode_filename(module_name: &str) -> String {
format!("{module_name}.{PRE_LTO_BC_EXT}")
}