We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Parser
1 parent df56c50 commit 0f7dccfCopy full SHA for 0f7dccf
compiler/rustc_parse/src/parser/mod.rs
@@ -188,9 +188,9 @@ pub struct Parser<'a> {
188
recovery: Recovery,
189
}
190
191
-// This type is used a lot, e.g. it's cloned when matching many declarative macro rules with nonterminals. Make sure
192
-// it doesn't unintentionally get bigger.
193
-#[cfg(target_pointer_width = "64")]
+// 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")))]
194
rustc_data_structures::static_assert_size!(Parser<'_>, 288);
195
196
/// Stores span information about a closure.
0 commit comments