refactor(furc): bring back ADCE to post process

Refs: #12
This commit is contained in:
2026-06-23 15:21:12 +02:00
parent dad2c180d6
commit 8909a0cfff
3 changed files with 49 additions and 0 deletions
+1
View File
@@ -37,6 +37,7 @@ int main(void) {
furc::front::post_process postProcess;
postProcess.push_stage(furc::front::post_process::Ssa);
postProcess.push_stage(furc::front::post_process::Sccp);
postProcess.push_stage(furc::front::post_process::Adce);
postProcess.push_stage(furc::front::post_process::DeSsa);
postProcess.process(mod);