diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-03-24 17:08:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-24 17:08:16 +0100 |
| commit | 1ee4ae9eb2e31cb5ce5f256f93116e86b46e4f59 (patch) | |
| tree | 258c84652478714f4d935235a0eaacef2bf4a734 | |
| parent | abbe1ba6f2e09a79ceee53bd6645265c6bb8f0f2 (diff) | |
| parent | 95c7fde6b116daf2bd9078216f560b65edc87737 (diff) | |
| download | rust-1ee4ae9eb2e31cb5ce5f256f93116e86b46e4f59.tar.gz rust-1ee4ae9eb2e31cb5ce5f256f93116e86b46e4f59.zip | |
Rollup merge of #122937 - Zalathar:unbox, r=oli-obk
Unbox and unwrap the contents of `StatementKind::Coverage` The payload of coverage statements was historically a structure with several fields, so it was boxed to avoid bloating `StatementKind`. Now that the payload is a single relatively-small enum, we can replace `Box<Coverage>` with just `CoverageKind`. This patch also adds a size assertion for `StatementKind`, to avoid accidentally bloating it in the future. ``@rustbot`` label +A-code-coverage
| -rw-r--r-- | src/coverageinfo.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coverageinfo.rs b/src/coverageinfo.rs index 849e9886ef3..4e44f78f23c 100644 --- a/src/coverageinfo.rs +++ b/src/coverageinfo.rs @@ -1,11 +1,11 @@ use rustc_codegen_ssa::traits::CoverageInfoBuilderMethods; -use rustc_middle::mir::Coverage; +use rustc_middle::mir::coverage::CoverageKind; use rustc_middle::ty::Instance; use crate::builder::Builder; impl<'a, 'gcc, 'tcx> CoverageInfoBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tcx> { - fn add_coverage(&mut self, _instance: Instance<'tcx>, _coverage: &Coverage) { + fn add_coverage(&mut self, _instance: Instance<'tcx>, _kind: &CoverageKind) { // TODO(antoyo) } } |
