about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/debuginfo/emit.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/debuginfo/emit.rs b/src/debuginfo/emit.rs
index c8c2d50b034..4120ba6e533 100644
--- a/src/debuginfo/emit.rs
+++ b/src/debuginfo/emit.rs
@@ -69,8 +69,6 @@ impl WriterRelocate {
     /// Perform the collected relocations to be usable for JIT usage.
     #[cfg(feature = "jit")]
     pub(super) fn relocate_for_jit(mut self, jit_module: &cranelift_jit::JITModule) -> Vec<u8> {
-        use std::convert::TryInto;
-
         for reloc in self.relocs.drain(..) {
             match reloc.name {
                 super::DebugRelocName::Section(_) => unreachable!(),