diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2024-12-06 23:00:22 +1100 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2024-12-08 17:50:42 +1100 |
| commit | f3f7c20f7b85fa289657b36c30faddff869f8a1f (patch) | |
| tree | 47b72613f4e6708fe041ae32549848c6031020ca /compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs | |
| parent | 728f2daab42ba8f1b3d5caab62495798d1eabfa1 (diff) | |
| download | rust-f3f7c20f7b85fa289657b36c30faddff869f8a1f.tar.gz rust-f3f7c20f7b85fa289657b36c30faddff869f8a1f.zip | |
coverage: Move `CoverageIdsInfo` into `mir::coverage`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs b/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs index 0752c718c70..74e0a647b65 100644 --- a/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs +++ b/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs @@ -1,10 +1,9 @@ use rustc_data_structures::captures::Captures; use rustc_data_structures::fx::FxIndexSet; use rustc_index::bit_set::BitSet; -use rustc_middle::mir::CoverageIdsInfo; use rustc_middle::mir::coverage::{ - CounterId, CovTerm, Expression, ExpressionId, FunctionCoverageInfo, Mapping, MappingKind, Op, - SourceRegion, + CounterId, CovTerm, CoverageIdsInfo, Expression, ExpressionId, FunctionCoverageInfo, Mapping, + MappingKind, Op, SourceRegion, }; use rustc_middle::ty::Instance; use tracing::debug; |
