Browse Source

Supress a warning in lightbeam.

pull/2658/head
Dan Gohman 4 years ago
parent
commit
3ed46e47e9
  1. 1
      crates/lightbeam/src/backend.rs

1
crates/lightbeam/src/backend.rs

@ -785,6 +785,7 @@ use labels::{LabelInfo, LabelValue, Labels};
pub struct Context<'this, M> { pub struct Context<'this, M> {
pub asm: &'this mut Assembler, pub asm: &'this mut Assembler,
pointer_type: SignlessType, pointer_type: SignlessType,
#[allow(dead_code)]
source_loc: SourceLoc, source_loc: SourceLoc,
reloc_sink: &'this mut dyn binemit::RelocSink, reloc_sink: &'this mut dyn binemit::RelocSink,
module_context: &'this M, module_context: &'this M,

Loading…
Cancel
Save