hir: Add non-optional hir_owner_nodes
for real OwnerId
s
This commit is contained in:
parent
64b6b5b6ce
commit
667d5d325f
3 changed files with 55 additions and 49 deletions
|
@ -452,10 +452,5 @@ fn get_body_span<'tcx>(
|
|||
fn hash_mir_source<'tcx>(tcx: TyCtxt<'tcx>, hir_body: &'tcx rustc_hir::Body<'tcx>) -> u64 {
|
||||
// FIXME(cjgillot) Stop hashing HIR manually here.
|
||||
let owner = hir_body.id().hir_id.owner;
|
||||
tcx.opt_hir_owner_nodes(owner)
|
||||
.unwrap()
|
||||
.opt_hash_including_bodies
|
||||
.unwrap()
|
||||
.to_smaller_hash()
|
||||
.as_u64()
|
||||
tcx.hir_owner_nodes(owner).opt_hash_including_bodies.unwrap().to_smaller_hash().as_u64()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue