blob: d1d813bd38922152b2a5fff651d249a5faf121f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use super::BackendTypes;
use rustc_middle::mir::coverage::CoverageKind;
use rustc_middle::ty::Instance;
pub trait CoverageInfoBuilderMethods<'tcx>: BackendTypes {
/// Handle the MIR coverage info in a backend-specific way.
///
/// This can potentially be a no-op in backends that don't support
/// coverage instrumentation.
fn add_coverage(&mut self, instance: Instance<'tcx>, kind: &CoverageKind);
}
|