about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2023-07-05 18:04:58 +1000
committerZalathar <Zalathar@users.noreply.github.com>2023-07-05 20:40:40 +1000
commitcb570d6bc1251f32a07d8ce173dc735be78a325f (patch)
treee0b527d7200c97d42b9499c8be9e49c476470d48 /compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs
parent9c430d38cf10ec3fab459be00e87057e5cce55b0 (diff)
downloadrust-cb570d6bc1251f32a07d8ce173dc735be78a325f.tar.gz
rust-cb570d6bc1251f32a07d8ce173dc735be78a325f.zip
Move `coverageinfo::ffi` and `coverageinfo::map` out of SSA
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs b/compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs
index 57c5d393957..a1ff2aa6625 100644
--- a/compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs
+++ b/compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs
@@ -1,9 +1,9 @@
 use crate::common::CodegenCx;
 use crate::coverageinfo;
+use crate::coverageinfo::map_data::{Counter, CounterExpression};
 use crate::llvm;
 
 use llvm::coverageinfo::CounterMappingRegion;
-use rustc_codegen_ssa::coverageinfo::map::{Counter, CounterExpression};
 use rustc_codegen_ssa::traits::ConstMethods;
 use rustc_data_structures::fx::FxIndexSet;
 use rustc_hir::def::DefKind;