about summary refs log tree commit diff
path: root/compiler/rustc_parse/src
diff options
context:
space:
mode:
authoryukang <moorekang@gmail.com>2023-03-15 00:41:47 +0800
committeryukang <moorekang@gmail.com>2023-05-01 16:15:17 +0800
commita4453c20cae5e72073d3cb6180132de2f371d2de (patch)
tree479c1895c68d2823a2dfd229fc6b8b06bd6f7a7c /compiler/rustc_parse/src
parent102046d4068133fecac550f91512d32266b34a2d (diff)
downloadrust-a4453c20cae5e72073d3cb6180132de2f371d2de.tar.gz
rust-a4453c20cae5e72073d3cb6180132de2f371d2de.zip
fix parser size
Diffstat (limited to 'compiler/rustc_parse/src')
-rw-r--r--compiler/rustc_parse/src/parser/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/mod.rs b/compiler/rustc_parse/src/parser/mod.rs
index 93a01fafa10..8cf0f95d90e 100644
--- a/compiler/rustc_parse/src/parser/mod.rs
+++ b/compiler/rustc_parse/src/parser/mod.rs
@@ -162,7 +162,7 @@ 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_arch = "x86_64", target_pointer_width = "64"))]
-rustc_data_structures::static_assert_size!(Parser<'_>, 320);
+rustc_data_structures::static_assert_size!(Parser<'_>, 272);
 
 /// Stores span information about a closure.
 #[derive(Clone)]