File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ struct PrepPass : public Pass {
69
69
log (" \n " );
70
70
log (" prep:\n " );
71
71
log (" proc\n " );
72
+ log (" opt_const\n " );
72
73
log (" opt_clean\n " );
73
74
log (" check\n " );
74
75
log (" opt -keepdc\n " );
@@ -133,6 +134,7 @@ struct PrepPass : public Pass {
133
134
if (check_label (active, run_from, run_to, " coarse" ))
134
135
{
135
136
Pass::call (design, " proc" );
137
+ Pass::call (design, " opt_const" );
136
138
Pass::call (design, " opt_clean" );
137
139
Pass::call (design, " check" );
138
140
Pass::call (design, " opt -keepdc" );
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ struct SynthPass : public Pass {
81
81
log (" \n " );
82
82
log (" coarse:\n " );
83
83
log (" proc\n " );
84
+ log (" opt_const\n " );
84
85
log (" opt_clean\n " );
85
86
log (" check\n " );
86
87
log (" opt\n " );
@@ -179,6 +180,7 @@ struct SynthPass : public Pass {
179
180
if (check_label (active, run_from, run_to, " coarse" ))
180
181
{
181
182
Pass::call (design, " proc" );
183
+ Pass::call (design, " opt_const" );
182
184
Pass::call (design, " opt_clean" );
183
185
Pass::call (design, " check" );
184
186
Pass::call (design, " opt" );
You can’t perform that action at this time.
0 commit comments