Skip to content

Commit

Permalink
made new fsm insertion final pass on pre-opt
Browse files Browse the repository at this point in the history
  • Loading branch information
Parth Sarkar committed Jul 15, 2024
1 parent b6b3dd3 commit 9e4bfba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calyx-opt/src/default_passes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ impl PassManager {
pm.register_pass::<CombProp>()?;
pm.register_pass::<ComponentInliner>()?;
pm.register_pass::<CollapseControl>()?;
pm.register_pass::<NewFSMs>()?;
pm.register_pass::<DeadAssignmentRemoval>()?;
pm.register_pass::<DeadCellRemoval>()?;
pm.register_pass::<DeadGroupRemoval>()?;
Expand All @@ -40,6 +39,7 @@ impl PassManager {
pm.register_pass::<StaticPromotion>()?;
pm.register_pass::<SimplifyStaticGuards>()?;
pm.register_pass::<DataPathInfer>()?;
pm.register_pass::<NewFSMs>()?;

// Compilation passes
pm.register_pass::<StaticInliner>()?;
Expand Down

0 comments on commit 9e4bfba

Please sign in to comment.