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