1
Fork 0
rust/src/librustc_passes/lib.rs

38 lines
661 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)]
2018-12-13 16:57:25 +01:00
#![recursion_limit="256"]
2016-07-21 07:01:14 +05:30
#[macro_use]
2019-02-08 20:40:49 +09:00
extern crate rustc;
2019-10-04 10:37:40 -04:00
#[macro_use]
extern crate log;
#[macro_use]
extern crate syntax;
2018-06-13 16:44:43 +03:00
use rustc::ty::query::Providers;
pub mod error_codes;
2016-01-21 10:52:37 +01:00
pub mod ast_validation;
pub mod hir_stats;
pub mod layout_test;
2016-01-21 10:52:37 +01:00
pub mod loops;
2019-10-04 10:33:11 -04:00
pub mod dead;
2019-10-04 10:37:40 -04:00
pub mod entry;
2019-10-04 10:31:28 -04:00
mod liveness;
2019-02-08 20:40:49 +09:00
pub fn provide(providers: &mut Providers<'_>) {
2019-10-04 10:37:40 -04:00
entry::provide(providers);
2018-06-06 22:13:52 +02:00
loops::provide(providers);
2019-10-04 10:31:28 -04:00
liveness::provide(providers);
}