diff options
| author | bors <bors@rust-lang.org> | 2022-12-03 12:32:28 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-12-03 12:32:28 +0000 |
| commit | 840f227b008aac696e869e1cf9e8e9f562496bc4 (patch) | |
| tree | e2486fa6b75b9b473c4d0619e2ebe67f2fad180f /compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs | |
| parent | 7d75cc48fed440a45c623609914554a816ceacd8 (diff) | |
| parent | 29814f2e2ace29268f76b109022ea4fe26de6535 (diff) | |
| download | rust-840f227b008aac696e869e1cf9e8e9f562496bc4.tar.gz rust-840f227b008aac696e869e1cf9e8e9f562496bc4.zip | |
Auto merge of #2712 - RalfJung:rustup, r=RalfJung
Rustup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs b/compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs index 964a632b6ee..ace15cfb024 100644 --- a/compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs +++ b/compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs @@ -37,7 +37,7 @@ const VAR_ALIGN_BYTES: usize = 8; /// A context object for maintaining all state needed by the coverageinfo module. pub struct CrateCoverageContext<'ll, 'tcx> { - // Coverage data for each instrumented function identified by DefId. + /// Coverage data for each instrumented function identified by DefId. pub(crate) function_coverage_map: RefCell<FxHashMap<Instance<'tcx>, FunctionCoverage<'tcx>>>, pub(crate) pgo_func_name_var_map: RefCell<FxHashMap<Instance<'tcx>, &'ll llvm::Value>>, } |
