Skip to content

Commit 990cf5b

Browse files
authored
Rollup merge of #91920 - Aaron1011:pred-stable-cmp, r=oli-obk
Use `tcx.def_path_hash` in `ExistentialPredicate.stable_cmp` This avoids a needless query invocation
2 parents 13fb051 + 4d1d66b commit 990cf5b

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_middle/src/ty

1 file changed

+1
-1
lines changed

compiler/rustc_middle/src/ty/sty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ impl<'tcx> ExistentialPredicate<'tcx> {
787787
tcx.def_path_hash(a.item_def_id).cmp(&tcx.def_path_hash(b.item_def_id))
788788
}
789789
(AutoTrait(ref a), AutoTrait(ref b)) => {
790-
tcx.trait_def(*a).def_path_hash.cmp(&tcx.trait_def(*b).def_path_hash)
790+
tcx.def_path_hash(*a).cmp(&tcx.def_path_hash(*b))
791791
}
792792
(Trait(_), _) => Ordering::Less,
793793
(Projection(_), Trait(_)) => Ordering::Greater,

0 commit comments

Comments
 (0)