Move codegen_select_candidate to a rustc_traits

This commit is contained in:
Michael Goulet 2022-12-08 05:16:39 +00:00
parent b36035c20f
commit 25a6daccab
3 changed files with 8 additions and 8 deletions

View file

@ -18,6 +18,7 @@ mod implied_outlives_bounds;
mod normalize_erasing_regions;
mod normalize_projection_ty;
mod type_op;
mod codegen;
pub use type_op::{type_op_ascribe_user_type_with_span, type_op_prove_predicate_with_cause};
@ -31,4 +32,5 @@ pub fn provide(p: &mut Providers) {
normalize_projection_ty::provide(p);
normalize_erasing_regions::provide(p);
type_op::provide(p);
p.codegen_select_candidate = codegen::codegen_select_candidate;
}