]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir/src/util/mod.rs
Auto merge of #79113 - andjo403:raw_vec_ptr, r=m-ou-se
[rust.git] / compiler / rustc_mir / src / util / mod.rs
1 pub mod aggregate;
2 pub mod borrowck_errors;
3 pub mod elaborate_drops;
4 pub mod patch;
5 pub mod storage;
6
7 mod alignment;
8 pub mod collect_writes;
9 mod find_self_call;
10 mod generic_graph;
11 pub(crate) mod generic_graphviz;
12 mod graphviz;
13 pub(crate) mod pretty;
14 pub(crate) mod spanview;
15
16 pub use self::aggregate::expand_aggregate;
17 pub use self::alignment::is_disaligned;
18 pub use self::find_self_call::find_self_call;
19 pub use self::generic_graph::graphviz_safe_def_name;
20 pub use self::graphviz::write_mir_graphviz;
21 pub use self::pretty::{dump_enabled, dump_mir, write_mir_pretty, PassWhere};