diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2022-03-29 16:15:52 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2022-05-13 08:06:48 +0200 |
| commit | 29f3b3fe4914f3e5f1d1f484cd1bcfb7e677c433 (patch) | |
| tree | 0643684da3fdce807fa9b5abfec1e1c40942221a | |
| parent | 9900ea352b1b7dbcbe290bbb62f436c91818c5d1 (diff) | |
| download | rust-29f3b3fe4914f3e5f1d1f484cd1bcfb7e677c433.tar.gz rust-29f3b3fe4914f3e5f1d1f484cd1bcfb7e677c433.zip | |
Do not cache item_attrs.
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index c6916697905..ddc2c599c8f 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -1100,7 +1100,6 @@ rustc_queries! { query item_attrs(def_id: DefId) -> &'tcx [ast::Attribute] { desc { |tcx| "collecting attributes of `{}`", tcx.def_path_str(def_id) } - cache_on_disk_if { def_id.is_local() } separate_provide_extern } |
