aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'common/nextpnr.cc')
-rw-r--r--common/nextpnr.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/nextpnr.cc b/common/nextpnr.cc
index 09fff8d1..09d8349f 100644
--- a/common/nextpnr.cc
+++ b/common/nextpnr.cc
@@ -454,7 +454,7 @@ DecalXY BaseCtx::constructDecalXY(DecalId decal, float x, float y)
return dxy;
}
-void BaseCtx::commonInfoToAttributes()
+void BaseCtx::archInfoToAttributes()
{
for (auto &cell : cells) {
auto ci = cell.second.get();
@@ -498,7 +498,7 @@ void BaseCtx::commonInfoToAttributes()
}
}
-void BaseCtx::attributesToCommonInfo()
+void BaseCtx::attributesToArchInfo()
{
for (auto &cell : cells) {
auto ci = cell.second.get();
@@ -544,6 +544,7 @@ void BaseCtx::attributesToCommonInfo()
}
}
}
+ getCtx()->assignArchInfo();
}
NEXTPNR_NAMESPACE_END