about summary refs log tree commit diff
path: root/compiler/rustc_incremental/src/persist/dirty_clean.rs
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2024-01-15 22:31:02 +0000
committerCamille GILLOT <gillot.camille@gmail.com>2024-01-16 23:49:38 +0000
commitb99c3ae6d66762b9faf863fa8078f5aad8b36205 (patch)
treeb57cb6d80226018092f0dd185aca2933913a7335 /compiler/rustc_incremental/src/persist/dirty_clean.rs
parent92f2e0aa62113a5f31076a9414daca55722556cf (diff)
downloadrust-b99c3ae6d66762b9faf863fa8078f5aad8b36205.tar.gz
rust-b99c3ae6d66762b9faf863fa8078f5aad8b36205.zip
Get rid of the hir_owner query.
Diffstat (limited to 'compiler/rustc_incremental/src/persist/dirty_clean.rs')
-rw-r--r--compiler/rustc_incremental/src/persist/dirty_clean.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_incremental/src/persist/dirty_clean.rs b/compiler/rustc_incremental/src/persist/dirty_clean.rs
index f6acc60190a..842cc9fae9b 100644
--- a/compiler/rustc_incremental/src/persist/dirty_clean.rs
+++ b/compiler/rustc_incremental/src/persist/dirty_clean.rs
@@ -57,8 +57,7 @@ const BASE_FN: &[&str] = &[
 
 /// DepNodes for Hir, which is pretty much everything
 const BASE_HIR: &[&str] = &[
-    // hir_owner and hir_owner_nodes should be computed for all nodes
-    label_strs::hir_owner,
+    // hir_owner_nodes should be computed for all nodes
     label_strs::hir_owner_nodes,
 ];