diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-11-20 14:32:01 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-11-20 14:32:01 -0800 |
commit | 729c6b93e8eb863aa9436239efea5f5678673b4f (patch) | |
tree | 66f2b05a3939e9a9aefc6879d3903997cb438313 | |
parent | af3055fe8354e0a082bd8415448fcbeb5ee435f6 (diff) | |
download | yosys-729c6b93e8eb863aa9436239efea5f5678673b4f.tar.gz yosys-729c6b93e8eb863aa9436239efea5f5678673b4f.tar.bz2 yosys-729c6b93e8eb863aa9436239efea5f5678673b4f.zip |
endomain -> ctrldomain
-rw-r--r-- | passes/techmap/abc9.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index 34cdd3c3e..8d4ff4025 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -1108,8 +1108,8 @@ struct Abc9Pass : public Pass { std::map<RTLIL::Cell*, std::set<RTLIL::SigBit>> cell_to_bit, cell_to_bit_up, cell_to_bit_down; std::map<RTLIL::SigBit, std::set<RTLIL::Cell*>> bit_to_cell, bit_to_cell_up, bit_to_cell_down; - typedef std::pair<IdString, SigSpec> endomain_t; - std::map<endomain_t, int> mergeability_class; + typedef std::pair<IdString, SigSpec> ctrldomain_t; + std::map<ctrldomain_t, int> mergeability_class; for (auto cell : all_cells) { for (auto &conn : cell->connections()) @@ -1149,7 +1149,7 @@ struct Abc9Pass : public Pass { assigned_cells[abc9_clock].insert(cell->name); assigned_cells_reverse[cell] = abc9_clock; - endomain_t key(cell->type, abc9_control); + ctrldomain_t key(cell->type, abc9_control); auto r = mergeability_class.emplace(key, mergeability_class.size() + 1); auto YS_ATTRIBUTE(unused) r2 = cell->attributes.insert(std::make_pair(ID(abc9_mergeability), r.first->second)); log_assert(r2.second); |