Add a dominator tree implementation.

This commit is contained in:
Morgan Phillips
2016-07-31 21:40:11 -07:00
parent a8beb542a5
commit 967a7c64d4
5 changed files with 201 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");
pub mod ir;
pub mod write;
pub mod cfg;
pub mod dominator_tree;
pub mod entity_map;
#[cfg(test)]pub mod test_utils;