diff options
author | gatecat <gatecat@ds0.me> | 2021-09-27 17:50:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 17:50:55 +0100 |
commit | 535b2490c422f2343e97404c7c304c71b549e3a3 (patch) | |
tree | 0c9a4e687fccf488fd8a0f4df58103f4de8eea8a /fpga_interchange/macros.cc | |
parent | 9782a46a9b4edb24cc73ea65f1ad7697ed74ab41 (diff) | |
parent | ea489f6d934ac6e649bcd81e10856e809f6b30d2 (diff) | |
download | nextpnr-535b2490c422f2343e97404c7c304c71b549e3a3.tar.gz nextpnr-535b2490c422f2343e97404c7c304c71b549e3a3.tar.bz2 nextpnr-535b2490c422f2343e97404c7c304c71b549e3a3.zip |
Merge pull request #812 from antmicro/MacroCells
Convert macros to clusters for better placement
Diffstat (limited to 'fpga_interchange/macros.cc')
-rw-r--r-- | fpga_interchange/macros.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fpga_interchange/macros.cc b/fpga_interchange/macros.cc index 762615c1..aa7d3184 100644 --- a/fpga_interchange/macros.cc +++ b/fpga_interchange/macros.cc @@ -50,6 +50,7 @@ static IdString derived_name(Context *ctx, IdString base_name, IdString suffix) void Arch::expand_macros() { + log_info("Expand macros\n"); // Make up a list of cells, so we don't have modify-while-iterating issues Context *ctx = getCtx(); std::vector<CellInfo *> cells; |