about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser
diff options
context:
space:
mode:
authorThe Miri Cronjob Bot <miri@cron.bot>2025-01-25 05:11:28 +0000
committerThe Miri Cronjob Bot <miri@cron.bot>2025-01-25 05:11:28 +0000
commitc9502079ed12d35de139416cd8e67e43b0b5bfd8 (patch)
tree6a131fb160b1ad071bb1a0c30add05ae64b48ebd /compiler/rustc_parse/src/parser
parent99d29633863bbabe2cf516fac126365d73fca026 (diff)
parent83c09ff3bd5a390bc7f4968e4e570744d11d4663 (diff)
downloadrust-c9502079ed12d35de139416cd8e67e43b0b5bfd8.tar.gz
rust-c9502079ed12d35de139416cd8e67e43b0b5bfd8.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_parse/src/parser')
-rw-r--r--compiler/rustc_parse/src/parser/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/mod.rs b/compiler/rustc_parse/src/parser/mod.rs
index 10756be6afb..25d8eb9b453 100644
--- a/compiler/rustc_parse/src/parser/mod.rs
+++ b/compiler/rustc_parse/src/parser/mod.rs
@@ -189,8 +189,9 @@ pub struct Parser<'a> {
 }
 
 // This type is used a lot, e.g. it's cloned when matching many declarative macro rules with
-// nonterminals. Make sure it doesn't unintentionally get bigger.
-#[cfg(all(target_pointer_width = "64", not(target_arch = "s390x")))]
+// nonterminals. Make sure it doesn't unintentionally get bigger. We only check a few arches
+// though, because `TokenTypeSet(u128)` alignment varies on others, changing the total size.
+#[cfg(all(target_pointer_width = "64", any(target_arch = "aarch64", target_arch = "x86_64")))]
 rustc_data_structures::static_assert_size!(Parser<'_>, 288);
 
 /// Stores span information about a closure.