1 2 3 4 5 6 7
use crate::{ir::IrProg, symbols::SymTab}; mod dataflow; pub fn op(p: &IrProg, s: &mut SymTab) -> IrProg { dataflow::dataflow(p, s) }