aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'machxo2/arch.cc')
-rw-r--r--machxo2/arch.cc11
1 files changed, 1 insertions, 10 deletions
diff --git a/machxo2/arch.cc b/machxo2/arch.cc
index 70de80cf..ed62ed37 100644
--- a/machxo2/arch.cc
+++ b/machxo2/arch.cc
@@ -491,16 +491,7 @@ const std::vector<std::string> Arch::availableRouters = {"router1", "router2"};
void Arch::assignArchInfo()
{
- for (auto &cell : getCtx()->cells) {
- CellInfo *ci = cell.second.get();
- if (ci->type == id("GENERIC_SLICE")) {
- ci->is_slice = true;
- ci->slice_clk = get_net_or_empty(ci, id("CLK"));
- } else {
- ci->is_slice = false;
- }
- ci->user_group = int_or_default(ci->attrs, id("PACK_GROUP"), -1);
- }
+
}
bool Arch::cellsCompatible(const CellInfo **cells, int count) const