Navigation Menu

Skip to content

Commit

Permalink
Keep caching for non-promoted queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoxc committed Jun 30, 2019
1 parent 930ad86 commit ede41ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/librustc/query/mod.rs
Expand Up @@ -496,6 +496,7 @@ rustc_queries! {
query symbol_name(key: ty::Instance<'tcx>) -> ty::SymbolName {
no_force
desc { "computing the symbol for `{}`", key }
cache_on_disk_if { true }
}

query def_kind(_: DefId) -> Option<DefKind> {}
Expand Down Expand Up @@ -562,6 +563,7 @@ rustc_queries! {
key: (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>)
) -> Vtable<'tcx, ()> {
no_force
cache_on_disk_if { true }
desc { |tcx|
"checking if `{}` fulfills its obligations",
tcx.def_path_str(key.1.def_id())
Expand Down

0 comments on commit ede41ab

Please sign in to comment.