Skip to content

Commit ce88e28

Browse files
authored
Unrolled build for rust-lang#123439
Rollup merge of rust-lang#123439 - Zalathar:constants, r=oli-obk coverage: Remove useless constants After rust-lang#122972 and rust-lang#123419, these constants don't serve any useful purpose, so get rid of them. `@rustbot` label +A-code-coverage
2 parents ca7d34e + e08fdb0 commit ce88e28

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ pub(crate) mod ffi;
2424
pub(crate) mod map_data;
2525
pub mod mapgen;
2626

27-
const VAR_ALIGN: Align = Align::EIGHT;
28-
2927
/// A context object for maintaining all state needed by the coverageinfo module.
3028
pub struct CrateCoverageContext<'ll, 'tcx> {
3129
/// Coverage data for each instrumented function identified by DefId.
@@ -226,7 +224,8 @@ pub(crate) fn save_cov_data_to_mod<'ll, 'tcx>(
226224
llvm::set_global_constant(llglobal, true);
227225
llvm::set_linkage(llglobal, llvm::Linkage::PrivateLinkage);
228226
llvm::set_section(llglobal, &covmap_section_name);
229-
llvm::set_alignment(llglobal, VAR_ALIGN);
227+
// LLVM's coverage mapping format specifies 8-byte alignment for items in this section.
228+
llvm::set_alignment(llglobal, Align::EIGHT);
230229
cx.add_used_global(llglobal);
231230
}
232231

@@ -256,7 +255,8 @@ pub(crate) fn save_func_record_to_mod<'ll, 'tcx>(
256255
llvm::set_linkage(llglobal, llvm::Linkage::LinkOnceODRLinkage);
257256
llvm::set_visibility(llglobal, llvm::Visibility::Hidden);
258257
llvm::set_section(llglobal, covfun_section_name);
259-
llvm::set_alignment(llglobal, VAR_ALIGN);
258+
// LLVM's coverage mapping format specifies 8-byte alignment for items in this section.
259+
llvm::set_alignment(llglobal, Align::EIGHT);
260260
llvm::set_comdat(cx.llmod, llglobal, &func_record_var_name);
261261
cx.add_used_global(llglobal);
262262
}

compiler/rustc_middle/src/mir/coverage.rs

-8
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ rustc_index::newtype_index! {
3333
pub struct CounterId {}
3434
}
3535

36-
impl CounterId {
37-
pub const START: Self = Self::ZERO;
38-
}
39-
4036
rustc_index::newtype_index! {
4137
/// ID of a coverage-counter expression. Values ascend from 0.
4238
///
@@ -55,10 +51,6 @@ rustc_index::newtype_index! {
5551
pub struct ExpressionId {}
5652
}
5753

58-
impl ExpressionId {
59-
pub const START: Self = Self::ZERO;
60-
}
61-
6254
/// Enum that can hold a constant zero value, the ID of an physical coverage
6355
/// counter, or the ID of a coverage-counter expression.
6456
///

compiler/rustc_mir_transform/src/coverage/query.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn coverage_ids_info<'tcx>(
5959
_ => None,
6060
})
6161
.max()
62-
.unwrap_or(CounterId::START);
62+
.unwrap_or(CounterId::ZERO);
6363

6464
CoverageIdsInfo { max_counter_id }
6565
}

0 commit comments

Comments
 (0)