about summary refs log tree commit diff
path: root/src/librustc_trans/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustc_trans/lib.rs')
-rw-r--r--src/librustc_trans/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc_trans/lib.rs b/src/librustc_trans/lib.rs
index c38b90dcf4f..2b1c62c7f1c 100644
--- a/src/librustc_trans/lib.rs
+++ b/src/librustc_trans/lib.rs
@@ -204,7 +204,6 @@ pub struct ModuleTranslation {
     /// as the crate name and disambiguator.
     name: String,
     llmod_id: String,
-    symbol_name_hash: u64,
     pub source: ModuleSource,
     pub kind: ModuleKind,
 }
@@ -238,7 +237,6 @@ impl ModuleTranslation {
             llmod_id: self.llmod_id,
             name: self.name.clone(),
             kind: self.kind,
-            symbol_name_hash: self.symbol_name_hash,
             pre_existing,
             emit_obj,
             emit_bc,
@@ -253,7 +251,6 @@ pub struct CompiledModule {
     pub llmod_id: String,
     pub object: PathBuf,
     pub kind: ModuleKind,
-    pub symbol_name_hash: u64,
     pub pre_existing: bool,
     pub emit_obj: bool,
     pub emit_bc: bool,