about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-08-16 07:54:22 +0000
committerbors <bors@rust-lang.org>2022-08-16 07:54:22 +0000
commit14a459bf37bc19476d43e0045d078121c12d3fef (patch)
tree36e797a07bf83ddd338f6bb369f3ea09d4a384ea /compiler/rustc_query_system/src
parent8556e6620e4866526b3cea767ad8c20ae877a569 (diff)
parent85a6cd6a47ea0f7129dff5038fce7398ceb18222 (diff)
downloadrust-14a459bf37bc19476d43e0045d078121c12d3fef.tar.gz
rust-14a459bf37bc19476d43e0045d078121c12d3fef.zip
Auto merge of #100441 - nnethercote:shrink-ast-Attribute, r=petrochenkov
Shrink `ast::Attribute`.

r? `@ghost`
Diffstat (limited to 'compiler/rustc_query_system/src')
-rw-r--r--compiler/rustc_query_system/src/ich/impls_syntax.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_query_system/src/ich/impls_syntax.rs b/compiler/rustc_query_system/src/ich/impls_syntax.rs
index 1fa08592676..d7732cb1825 100644
--- a/compiler/rustc_query_system/src/ich/impls_syntax.rs
+++ b/compiler/rustc_query_system/src/ich/impls_syntax.rs
@@ -42,12 +42,12 @@ impl<'ctx> rustc_ast::HashStableContext for StableHashingContext<'ctx> {
         debug_assert!(!attr.is_doc_comment());
 
         let ast::Attribute { kind, id: _, style, span } = attr;
-        if let ast::AttrKind::Normal(item, tokens) = kind {
-            item.hash_stable(self, hasher);
+        if let ast::AttrKind::Normal(normal) = kind {
+            normal.item.hash_stable(self, hasher);
             style.hash_stable(self, hasher);
             span.hash_stable(self, hasher);
             assert_matches!(
-                tokens.as_ref(),
+                normal.tokens.as_ref(),
                 None,
                 "Tokens should have been removed during lowering!"
             );