diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2023-07-22 18:23:39 +1000 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2023-08-02 15:26:47 +1000 |
| commit | d6ed6e3904068bed1851d4110fc1f402e78aaadc (patch) | |
| tree | c1590a5ff798e962589f29ea181aaf898a5429f0 /compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs | |
| parent | 90bb4184f89a24d26787a9eada781bf3c4dd3dc6 (diff) | |
| download | rust-d6ed6e3904068bed1851d4110fc1f402e78aaadc.tar.gz rust-d6ed6e3904068bed1851d4110fc1f402e78aaadc.zip | |
coverage: Consolidate FFI types into one module
Coverage FFI types were historically split across two modules, because some of them were needed by code in `rustc_codegen_ssa`. Now that all of the coverage codegen code has been moved into `rustc_codegen_llvm` (#113355), it's possible to move all of the FFI types into a single module, making it easier to see all of them at once.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs b/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs index 7e981af0a53..f1e68af25d4 100644 --- a/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs +++ b/compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs @@ -1,4 +1,4 @@ -pub use super::ffi::*; +use crate::coverageinfo::ffi::{Counter, CounterExpression, ExprKind}; use rustc_index::{IndexSlice, IndexVec}; use rustc_middle::bug; |
