rust/src/librustc_passes/lib.rs

41 lines
825 B
Rust
Raw Normal View History

//! Various checks
//!
//! # Note
//!
//! This API is completely unstable and subject to change.
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
#![feature(in_band_lifetimes)]
#![feature(nll)]
#![feature(slice_patterns)]
2019-12-22 16:42:04 -06:00
#![recursion_limit = "256"]
2018-12-13 09:57:25 -06:00
2016-07-20 20:31:14 -05:00
#[macro_use]
2019-02-08 05:40:49 -06:00
extern crate rustc;
2019-10-04 09:37:40 -05:00
#[macro_use]
extern crate log;
#[macro_use]
extern crate syntax;
2018-06-13 08:44:43 -05:00
use rustc::ty::query::Providers;
pub mod ast_validation;
mod check_const;
2019-10-04 09:33:11 -05:00
pub mod dead;
2019-10-04 09:37:40 -05:00
pub mod entry;
2019-12-22 16:42:04 -06:00
pub mod hir_stats;
2019-10-04 09:46:57 -05:00
mod intrinsicck;
2019-12-22 16:42:04 -06:00
pub mod layout_test;
mod liveness;
pub mod loops;
mod reachable;
2019-02-08 05:40:49 -06:00
pub fn provide(providers: &mut Providers<'_>) {
check_const::provide(providers);
2019-10-04 09:37:40 -05:00
entry::provide(providers);
2018-06-06 15:13:52 -05:00
loops::provide(providers);
2019-10-04 09:31:28 -05:00
liveness::provide(providers);
2019-10-04 09:46:57 -05:00
intrinsicck::provide(providers);
reachable::provide(providers);
}