Update `DepNode`'s size

This commit is contained in:
Deadbeef 2021-07-10 21:46:31 +08:00
parent 88b29f5fb2
commit 7c9e214bc3
No known key found for this signature in database
GPG Key ID: 6525773485376D92
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ pub type DepNode = rustc_query_system::dep_graph::DepNode<DepKind>;
// required that their size stay the same, but we don't want to change
// it inadvertently. This assert just ensures we're aware of any change.
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
static_assert_size!(DepNode, 17);
static_assert_size!(DepNode, 18);
#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
static_assert_size!(DepNode, 24);