opt_merge: unordered_map -> dict as per @cliffordwolf review

This commit is contained in:
Eddie Hung 2020-03-16 12:44:33 -07:00
parent 9f30d7f843
commit cdf17c4455
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ struct OptMergeWorker
}
did_something = false;
std::unordered_map<std::string, RTLIL::Cell*> sharemap;
dict<std::string, RTLIL::Cell*> sharemap;
for (auto cell : cells)
{
if ((!mode_share_all && !ct.cell_known(cell->type)) || !cell->known())