#[path = "dominator_tree/program.rs"]
mod program;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/alloc_helpers.rs"]
mod alloc_helpers;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/lengauer_tarjan.rs"]
mod lengauer_tarjan;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/cooper_harvey_kennedy.rs"]
mod cooper_harvey_kennedy;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/cpu_ref.rs"]
mod cpu_ref;
#[cfg(feature = "inventory-registry")]
#[path = "dominator_tree/registry.rs"]
mod registry;
#[cfg(test)]
#[path = "dominator_tree/tests.rs"]
mod tests;
pub use program::*;
#[cfg(any(test, feature = "cpu-parity"))]
pub use cooper_harvey_kennedy::*;
#[cfg(any(test, feature = "cpu-parity"))]
pub use cpu_ref::*;
#[cfg(any(test, feature = "cpu-parity"))]
pub use lengauer_tarjan::*;