Move THIR printing to rustc_mir_build.

This commit is contained in:
Camille GILLOT 2023-02-26 14:27:02 +00:00
parent 70fd012439
commit 380ca0c9e6
5 changed files with 22 additions and 31 deletions

View file

@ -38,6 +38,6 @@ pub fn provide(providers: &mut Providers) {
providers.thir_check_unsafety = check_unsafety::thir_check_unsafety;
providers.thir_check_unsafety_for_const_arg = check_unsafety::thir_check_unsafety_for_const_arg;
providers.thir_body = thir::cx::thir_body;
providers.thir_tree = thir::cx::thir_tree;
providers.thir_flat = thir::cx::thir_flat;
providers.thir_tree = thir::print::thir_tree;
providers.thir_flat = thir::print::thir_flat;
}