Skip to content

Commit

Permalink
fix for EDA-3287
Browse files Browse the repository at this point in the history
  • Loading branch information
awaisabbas006 committed Nov 25, 2024
1 parent fc35315 commit c509492
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/synth_rapidsilicon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2820,7 +2820,16 @@ void abcDffOpt(int unmap_dff_ce, int n, int dfl, const string step)
continue;
}
if(cell->type == RTLIL::escape_id("$mul")){
MULT_used_cells.push_back(cell);
if (tech == Technologies::GENESIS_3)
{
if (cell->get_bool_attribute(RTLIL::escape_id("valid_map")))
{
MULT_used_cells.push_back(cell);
}
}
else {
MULT_used_cells.push_back(cell);
}
continue;
}
}
Expand Down

0 comments on commit c509492

Please sign in to comment.