about summary refs log tree commit diff
path: root/compiler/rustc_errors/src
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-04-16 17:02:20 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-04-18 15:36:25 +1000
commit0d97669a171d3d5c9c9c2d3437421d2d35d9bbb5 (patch)
treebfd7456fa92e7c81dd637db8a2c163184a88e38e /compiler/rustc_errors/src
parent1cec373f65eb76e8e4b4d1847213cf3ec6c292b6 (diff)
downloadrust-0d97669a171d3d5c9c9c2d3437421d2d35d9bbb5.tar.gz
rust-0d97669a171d3d5c9c9c2d3437421d2d35d9bbb5.zip
Simplify `static_assert_size`s.
We want to run them on all 64-bit platforms.
Diffstat (limited to 'compiler/rustc_errors/src')
-rw-r--r--compiler/rustc_errors/src/lib.rs4
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)]