2016-01-15 13:16:54 +01:00
|
|
|
//! Various checks
|
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
|
2019-02-05 14:37:15 +01:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2016-01-15 13:16:54 +01:00
|
|
|
|
2019-06-11 22:03:44 +03:00
|
|
|
#![feature(in_band_lifetimes)]
|
2018-09-26 14:26:46 -07:00
|
|
|
#![feature(nll)]
|
2017-05-08 14:36:44 -07:00
|
|
|
|
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;
|
2016-01-15 13:16:54 +01:00
|
|
|
|
2018-06-13 16:44:43 +03:00
|
|
|
use rustc::ty::query::Providers;
|
2017-09-11 13:09:14 -04:00
|
|
|
|
2019-09-03 21:15:18 -04:00
|
|
|
pub mod error_codes;
|
2016-01-21 10:52:37 +01:00
|
|
|
|
2016-03-06 15:54:44 +03:00
|
|
|
pub mod ast_validation;
|
2016-11-04 11:37:39 -04:00
|
|
|
pub mod hir_stats;
|
2019-01-09 15:16:32 -05:00
|
|
|
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;
|
2017-07-30 23:22:09 -07:00
|
|
|
|
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);
|
2017-09-11 13:09:14 -04:00
|
|
|
}
|