diff options
| author | bors <bors@rust-lang.org> | 2024-04-19 09:00:46 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-04-19 09:00:46 +0000 |
| commit | 95ae2dd7fff88ae753bf44e42417e8ab52d15f93 (patch) | |
| tree | ec975ef7b8a25d4e5cc32e8c217c27de92568e89 /compiler/rustc_errors/src | |
| parent | 134ee309c9db64b682dc06ebe23291d85f91ea9e (diff) | |
| parent | fecd7fc937ad2d019f92d5b5c07d73ae206deaae (diff) | |
| download | rust-95ae2dd7fff88ae753bf44e42417e8ab52d15f93.tar.gz rust-95ae2dd7fff88ae753bf44e42417e8ab52d15f93.zip | |
Auto merge of #3489 - rust-lang:rustup-2024-04-19, r=RalfJung
Automatic Rustup
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index b4107bd4a2b..8d6b22a9fa9 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -102,9 +102,9 @@ pub type PResult<'a, T> = Result<T, PErr<'a>>; rustc_fluent_macro::fluent_messages! { "../messages.ftl" } // `PResult` is used a lot. Make sure it doesn't unintentionally get bigger. -#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))] +#[cfg(target_pointer_width = "64")] rustc_data_structures::static_assert_size!(PResult<'_, ()>, 16); -#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_pointer_width = "64"))] +#[cfg(target_pointer_width = "64")] rustc_data_structures::static_assert_size!(PResult<'_, bool>, 16); #[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Encodable, Decodable)] |
