]> git.lizzy.rs Git - rust.git/blob - src/librustc_passes/lib.rs
Auto merge of #44096 - Dushistov:master, r=japaric
[rust.git] / src / librustc_passes / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Various checks
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19        html_root_url = "https://doc.rust-lang.org/nightly/")]
20 #![deny(warnings)]
21
22 #![feature(rustc_diagnostic_macros)]
23
24 #[macro_use]
25 extern crate rustc;
26 extern crate rustc_const_eval;
27 extern crate rustc_const_math;
28
29 #[macro_use]
30 extern crate log;
31 #[macro_use]
32 extern crate syntax;
33 extern crate syntax_pos;
34 extern crate rustc_errors as errors;
35
36 mod diagnostics;
37
38 pub mod ast_validation;
39 pub mod consts;
40 pub mod hir_stats;
41 pub mod loops;
42 mod mir_stats;
43 pub mod no_asm;
44 pub mod static_recursion;
45
46 __build_diagnostic_array! { librustc_passes, DIAGNOSTICS }