diff options
Diffstat (limited to 'techlibs/common/synth.cc')
-rw-r--r-- | techlibs/common/synth.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/common/synth.cc b/techlibs/common/synth.cc index 83d00f328..c837e1378 100644 --- a/techlibs/common/synth.cc +++ b/techlibs/common/synth.cc @@ -81,7 +81,7 @@ struct SynthPass : public Pass { log("\n"); log(" coarse:\n"); log(" proc\n"); - log(" opt_const\n"); + log(" opt_expr\n"); log(" opt_clean\n"); log(" check\n"); log(" opt\n"); @@ -180,7 +180,7 @@ struct SynthPass : public Pass { if (check_label(active, run_from, run_to, "coarse")) { Pass::call(design, "proc"); - Pass::call(design, "opt_const"); + Pass::call(design, "opt_expr"); Pass::call(design, "opt_clean"); Pass::call(design, "check"); Pass::call(design, "opt"); |