CodeGenLib/opt/
optimize.rs

1//! The home of code optimization
2
3use crate::Function;
4
5/// Implement this trait so the builder can optimize your struct
6pub trait Optimize {
7    fn optimize(&mut self);
8}
9
10impl Optimize for Function {
11    fn optimize(&mut self) {
12        
13    }
14}