blob: b7b702431bc2a9a0d050e9d0a6556af3412851bf [file] [log] [blame]
pub mod aggregate;
pub mod borrowck_errors;
pub mod elaborate_drops;
pub mod patch;
pub mod storage;
mod alignment;
pub mod collect_writes;
mod find_self_call;
mod generic_graph;
pub(crate) mod generic_graphviz;
mod graphviz;
pub(crate) mod pretty;
pub(crate) mod spanview;
pub use self::aggregate::expand_aggregate;
pub use self::alignment::is_disaligned;
pub use self::find_self_call::find_self_call;
pub use self::generic_graph::graphviz_safe_def_name;
pub use self::graphviz::write_mir_graphviz;
pub use self::pretty::{dump_enabled, dump_mir, write_mir_pretty, PassWhere};