diff options
| author | bors <bors@rust-lang.org> | 2024-10-26 14:08:18 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-10-26 14:08:18 +0000 |
| commit | 9260be36b2dbd896c6b233d60d1c429a75a0081a (patch) | |
| tree | 9c31db24e9bdf7d2e128bbcaebf05b0546b5d29e /compiler/rustc_codegen_llvm/src/context.rs | |
| parent | 17f82153946d67ea4e679cbfda3cb2aae6e7c5c8 (diff) | |
| parent | 50e78b8b3c4de72cd2a156be114bcf73dfde6709 (diff) | |
| download | rust-9260be36b2dbd896c6b233d60d1c429a75a0081a.tar.gz rust-9260be36b2dbd896c6b233d60d1c429a75a0081a.zip | |
Auto merge of #132184 - jieyouxu:rollup-81ht12w, r=jieyouxu
Rollup of 5 pull requests Successful merges: - #132124 (coverage: Consolidate creation of covmap/covfun records) - #132140 (Enable LSX feature for LoongArch Linux targets) - #132169 (Deny calls to non-`#[const_trait]` methods in MIR constck) - #132174 (x86 target features: make pclmulqdq imply sse2) - #132180 (Print unsafety of attribute in AST pretty print) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/context.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/context.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_llvm/src/context.rs b/compiler/rustc_codegen_llvm/src/context.rs index fb845c0087b..3fc153c6cd4 100644 --- a/compiler/rustc_codegen_llvm/src/context.rs +++ b/compiler/rustc_codegen_llvm/src/context.rs @@ -80,6 +80,7 @@ pub(crate) struct CodegenCx<'ll, 'tcx> { pub isize_ty: &'ll Type, + /// Extra codegen state needed when coverage instrumentation is enabled. pub coverage_cx: Option<coverageinfo::CrateCoverageContext<'ll, 'tcx>>, pub dbg_cx: Option<debuginfo::CodegenUnitDebugContext<'ll, 'tcx>>, @@ -592,11 +593,10 @@ impl<'ll, 'tcx> CodegenCx<'ll, 'tcx> { &self.statics_to_rauw } + /// Extra state that is only available when coverage instrumentation is enabled. #[inline] - pub(crate) fn coverage_context( - &self, - ) -> Option<&coverageinfo::CrateCoverageContext<'ll, 'tcx>> { - self.coverage_cx.as_ref() + pub(crate) fn coverage_cx(&self) -> &coverageinfo::CrateCoverageContext<'ll, 'tcx> { + self.coverage_cx.as_ref().expect("only called when coverage instrumentation is enabled") } pub(crate) fn create_used_variable_impl(&self, name: &'static CStr, values: &[&'ll Value]) { |
