about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/debuginfo
diff options
context:
space:
mode:
authorKyle Huey <khuey@kylehuey.com>2024-08-04 06:09:55 -0700
committerKyle Huey <khuey@kylehuey.com>2024-08-04 06:09:55 -0700
commit5dc4a1969c6ea5ba0b1d11f9d43045ed5a2be5cc (patch)
treea5c303476ca5f5feb9dbe57a78b8519b46a20fef /compiler/rustc_codegen_llvm/src/debuginfo
parente5878555387e4ced52b3dd6c5f6a04a5f47eeed7 (diff)
downloadrust-5dc4a1969c6ea5ba0b1d11f9d43045ed5a2be5cc.tar.gz
rust-5dc4a1969c6ea5ba0b1d11f9d43045ed5a2be5cc.zip
Fix warning.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/debuginfo')
-rw-r--r--compiler/rustc_codegen_llvm/src/debuginfo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
index 57b8fb2fe71..66dd653bb21 100644
--- a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
+++ b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
@@ -20,7 +20,7 @@ use rustc_session::config::{self, DebugInfo};
 use rustc_session::Session;
 use rustc_span::symbol::Symbol;
 use rustc_span::{
-    BytePos, Pos, SourceFile, SourceFileAndLine, SourceFileHash, Span, StableSourceFileId, DUMMY_SP,
+    BytePos, Pos, SourceFile, SourceFileAndLine, SourceFileHash, Span, StableSourceFileId,
 };
 use rustc_target::abi::Size;
 use smallvec::SmallVec;