2015-11-10 21:38:36 +01:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
pub mod simplify_cfg;
|
2015-11-16 18:41:16 +01:00
|
|
|
pub mod erase_regions;
|
2016-02-11 10:13:35 +02:00
|
|
|
pub mod no_landing_pads;
|
2016-02-07 21:13:00 +02:00
|
|
|
pub mod type_check;
|
2016-06-05 09:00:17 +03:00
|
|
|
pub mod add_call_guards;
|
2016-05-07 19:14:28 +03:00
|
|
|
pub mod promote_consts;
|
|
|
|
pub mod qualify_consts;
|
2016-06-05 09:00:17 +03:00
|
|
|
pub mod dump_mir;
|