1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) mod adt;
mod inline_blocks;
mod spill;
mod split_critical_edges;
mod treeify;

pub use self::{
    inline_blocks::InlineBlocks,
    spill::{ApplySpills, InsertSpills, RewriteSpills},
    split_critical_edges::SplitCriticalEdges,
    treeify::Treeify,
};