Move computation of decorated names out of the create_dll_import_lib method

This commit is contained in:
bjorn3 2024-07-25 20:08:40 +00:00 committed by Guillaume Gomez
parent c57eb5581f
commit 50b374627f

View File

@ -3,7 +3,6 @@
use rustc_codegen_ssa::back::archive::{
ArArchiveBuilder, ArchiveBuilder, ArchiveBuilderBuilder, DEFAULT_OBJECT_READER,
};
use rustc_session::cstore::DllImport;
use rustc_session::Session;
pub(crate) struct ArArchiveBuilderBuilder;
@ -17,7 +16,7 @@ fn create_dll_import_lib(
&self,
_sess: &Session,
_lib_name: &str,
_dll_imports: &[DllImport],
_import_name_and_ordinal_vector: Vec<(String, Option<u16>)>,
_output_path: &Path,
) {
unimplemented!("creating dll imports is not yet supported");