diff options
| author | bors <bors@rust-lang.org> | 2024-04-03 20:19:51 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-04-03 20:19:51 +0000 |
| commit | 4fd4797c2654977f545c9a91e2aa4e6cdbb38919 (patch) | |
| tree | 90be0d0aff23ef614454b62bc025407392534071 /compiler/rustc_middle/src/mir/coverage.rs | |
| parent | 98efd808e1b77cd70a097620aad6250727167a28 (diff) | |
| parent | 65398c46b8207fb36d85bdab1ff2d68c38f0e3a4 (diff) | |
| download | rust-4fd4797c2654977f545c9a91e2aa4e6cdbb38919.tar.gz rust-4fd4797c2654977f545c9a91e2aa4e6cdbb38919.zip | |
Auto merge of #123429 - matthiaskrgr:rollup-4emw4e9, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - #121595 (Better reporting on generic argument mismatchs) - #122619 (Fix some unsoundness with PassMode::Cast ABI) - #122964 (Rename `expose_addr` to `expose_provenance`) - #123291 (Move some tests) - #123301 (pattern analysis: fix union handling) - #123395 (More postfix match fixes) - #123419 (rustc_index: Add a `ZERO` constant to index types) - #123421 (Fix target name in NetBSD platform-support doc) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_middle/src/mir/coverage.rs')
| -rw-r--r-- | compiler/rustc_middle/src/mir/coverage.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/mir/coverage.rs b/compiler/rustc_middle/src/mir/coverage.rs index 588aa1f40d7..0c91dc6d3c6 100644 --- a/compiler/rustc_middle/src/mir/coverage.rs +++ b/compiler/rustc_middle/src/mir/coverage.rs @@ -34,7 +34,7 @@ rustc_index::newtype_index! { } impl CounterId { - pub const START: Self = Self::from_u32(0); + pub const START: Self = Self::ZERO; } rustc_index::newtype_index! { @@ -56,7 +56,7 @@ rustc_index::newtype_index! { } impl ExpressionId { - pub const START: Self = Self::from_u32(0); + pub const START: Self = Self::ZERO; } /// Enum that can hold a constant zero value, the ID of an physical coverage |
