sonatina_codegen/lib.rs
1// We allow `needless_collect` due to some false positive.
2// See <https://github.com/rust-lang/rust-clippy/issues/7512> and <https://github.com/rust-lang/rust-clippy/issues/7336>
3#![allow(clippy::needless_collect)]
4
5pub mod cfg;
6pub mod critical_edge;
7pub mod domtree;
8pub mod loop_analysis;
9pub mod optim;
10pub mod post_domtree;