diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2025-06-15 23:51:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-15 23:51:54 +0200 |
| commit | 0b249d3f857b86887bae595d32b4c40235a32bf0 (patch) | |
| tree | 24aa340ff1069b6a2f0158a7f63d03c2b66aae99 /compiler/rustc_session/src | |
| parent | b79d3b1ec15c64bf00677207287b17e3d6f6e05f (diff) | |
| parent | 0bd7aa1116c42a96d1c692065ae500a3d2d75484 (diff) | |
| download | rust-0b249d3f857b86887bae595d32b4c40235a32bf0.tar.gz rust-0b249d3f857b86887bae595d32b4c40235a32bf0.zip | |
Rollup merge of #141769 - bjorn3:codegen_metadata_module_rework, r=workingjubilee,saethlin
Move metadata object generation for dylibs to the linker code This deduplicates some code between codegen backends and may in the future allow adding extra metadata that is only known at link time. Prerequisite of https://github.com/rust-lang/rust/issues/96708.
Diffstat (limited to 'compiler/rustc_session/src')
| -rw-r--r-- | compiler/rustc_session/src/session.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/rustc_session/src/session.rs b/compiler/rustc_session/src/session.rs index 6b85e0abc86..b8b4518b14e 100644 --- a/compiler/rustc_session/src/session.rs +++ b/compiler/rustc_session/src/session.rs @@ -215,13 +215,6 @@ pub struct Session { pub invocation_temp: Option<String>, } -#[derive(PartialEq, Eq, PartialOrd, Ord)] -pub enum MetadataKind { - None, - Uncompressed, - Compressed, -} - #[derive(Clone, Copy)] pub enum CodegenUnits { /// Specified by the user. In this case we try fairly hard to produce the |
