about summary refs log tree commit diff
path: root/src/debuginfo/emit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/debuginfo/emit.rs')
-rw-r--r--src/debuginfo/emit.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/debuginfo/emit.rs b/src/debuginfo/emit.rs
index d376766966d..36af7d4450d 100644
--- a/src/debuginfo/emit.rs
+++ b/src/debuginfo/emit.rs
@@ -15,7 +15,6 @@ pub(super) fn address_for_func(func_id: FuncId) -> Address {
     Address::Symbol { symbol: symbol as usize, addend: 0 }
 }
 
-#[allow(dead_code)]
 pub(super) fn address_for_data(data_id: DataId) -> Address {
     let symbol = data_id.as_u32();
     assert!(symbol & 1 << 31 == 0);