1
Fork 0

Move some codegen-y methods from rustc_hir_analysis::collect -> rustc_codegen_ssa

This commit is contained in:
Michael Goulet 2022-12-08 03:53:35 +00:00
parent b96d9e0e20
commit a8a45100a0
8 changed files with 857 additions and 828 deletions

View file

@ -42,6 +42,7 @@ use std::path::{Path, PathBuf};
pub mod back;
pub mod base;
pub mod codegen_attrs;
pub mod common;
pub mod coverageinfo;
pub mod debuginfo;
@ -180,6 +181,7 @@ pub fn provide(providers: &mut Providers) {
crate::back::symbol_export::provide(providers);
crate::base::provide(providers);
crate::target_features::provide(providers);
crate::codegen_attrs::provide(providers);
}
pub fn provide_extern(providers: &mut ExternProviders) {