]> git.lizzy.rs Git - rust.git/blob - src/librustc_passes/lib.rs
Auto merge of #56962 - nivkner:fixme_fixup4, r=pnkfelix
[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
21 #![feature(nll)]
22 #![feature(rustc_diagnostic_macros)]
23
24 #![recursion_limit="256"]
25
26 #[macro_use]
27 extern crate rustc;
28 extern crate rustc_mir;
29 extern crate rustc_data_structures;
30
31 #[macro_use]
32 extern crate log;
33 #[macro_use]
34 extern crate syntax;
35 extern crate syntax_pos;
36 extern crate rustc_errors as errors;
37
38 use rustc::ty::query::Providers;
39
40 mod diagnostics;
41
42 pub mod ast_validation;
43 pub mod rvalue_promotion;
44 pub mod hir_stats;
45 pub mod loops;
46
47 __build_diagnostic_array! { librustc_passes, DIAGNOSTICS }
48
49 pub fn provide(providers: &mut Providers) {
50     rvalue_promotion::provide(providers);
51 }