1
Fork 0

Remove is_dllimport_foreign_item def from cg_ssa

It overwrites the definition from rustc_metadata
This commit is contained in:
bjorn3 2021-01-13 14:33:40 +01:00
parent 18d27b2c94
commit 7aca2fa7c6
2 changed files with 0 additions and 32 deletions

View file

@ -1259,11 +1259,6 @@ rustc_queries! {
}
Other {
query dllimport_foreign_items(_: CrateNum)
-> FxHashSet<DefId> {
storage(ArenaCacheSelector<'tcx>)
desc { "dllimport_foreign_items" }
}
query is_dllimport_foreign_item(def_id: DefId) -> bool {
desc { |tcx| "is_dllimport_foreign_item({})", tcx.def_path_str(def_id) }
}