File tree 1 file changed +2
-6
lines changed
compiler/rustc_trait_selection/src/traits
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 1
1
use crate :: errors:: DumpVTableEntries ;
2
- use crate :: traits:: { impossible_predicates , is_vtable_safe_method} ;
2
+ use crate :: traits:: is_vtable_safe_method;
3
3
use rustc_hir:: def_id:: DefId ;
4
4
use rustc_infer:: traits:: util:: PredicateSet ;
5
5
use rustc_middle:: bug;
@@ -276,11 +276,7 @@ fn vtable_entries<'tcx>(
276
276
// do not hold for this particular set of type parameters.
277
277
// Note that this method could then never be called, so we
278
278
// do not want to try and codegen it, in that case (see #23435).
279
- let predicates = tcx. predicates_of ( def_id) . instantiate_own ( tcx, args) ;
280
- if impossible_predicates (
281
- tcx,
282
- predicates. map ( |( predicate, _) | predicate) . collect ( ) ,
283
- ) {
279
+ if tcx. instantiate_and_check_impossible_predicates ( ( def_id, args) ) {
284
280
debug ! ( "vtable_entries: predicates do not hold" ) ;
285
281
return VtblEntry :: Vacant ;
286
282
}
You can’t perform that action at this time.
0 commit comments