about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-22 14:50:24 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-23 18:02:40 +1000
commit8e94226e618d99f9fa1e27ae0f81fcf738417486 (patch)
treedc33eed91345c1bdfcca73dbf05d3c88452595e0 /compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs
parent9287aede315833ed6220ba5ad1cfd2ce13249b92 (diff)
downloadrust-8e94226e618d99f9fa1e27ae0f81fcf738417486.tar.gz
rust-8e94226e618d99f9fa1e27ae0f81fcf738417486.zip
Remove `#[macro_use] extern crate tracing` from `rustc_codegen_llvm`.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs b/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs
index d85d9411f03..b969fe27a99 100644
--- a/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs
+++ b/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs
@@ -9,6 +9,7 @@ use rustc_middle::mir::coverage::{
 };
 use rustc_middle::ty::Instance;
 use rustc_span::Symbol;
+use tracing::{debug, instrument};
 
 /// Holds all of the coverage mapping data associated with a function instance,
 /// collected during traversal of `Coverage` statements in the function's MIR.