We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62ba9d4 commit 4628133Copy full SHA for 4628133
compiler/rustc_middle/src/query/mod.rs
@@ -1762,6 +1762,7 @@ rustc_queries! {
1762
/// Whether the function is an intrinsic
1763
query intrinsic(def_id: DefId) -> Option<rustc_middle::ty::IntrinsicDef> {
1764
desc { |tcx| "fetch intrinsic name if `{}` is an intrinsic", tcx.def_path_str(def_id) }
1765
+ cache_on_disk_if { def_id.is_local() }
1766
separate_provide_extern
1767
}
1768
/// Returns the lang items defined in another crate by loading it from metadata.
0 commit comments