aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-06-18 19:09:18 +0100
committerGitHub <noreply@github.com>2021-06-18 19:09:18 +0100
commitc73d4cf6dd7568801f9c3cc5082593bddc8b5d9f (patch)
tree33154fbdf899045460780b318492695f80c23b1b
parent0f9a88b2cd84c561df11690c07af12373bf0941f (diff)
parent0344fdcf8d56061b206d631b937b8899c050926e (diff)
downloadnextpnr-c73d4cf6dd7568801f9c3cc5082593bddc8b5d9f.tar.gz
nextpnr-c73d4cf6dd7568801f9c3cc5082593bddc8b5d9f.tar.bz2
nextpnr-c73d4cf6dd7568801f9c3cc5082593bddc8b5d9f.zip
Merge pull request #733 from acomodi/interchange-move-macro-before-io
interchange: arch: move macro expansion step before ios packing
-rw-r--r--fpga_interchange/arch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc
index efff54bc..de172d90 100644
--- a/fpga_interchange/arch.cc
+++ b/fpga_interchange/arch.cc
@@ -755,9 +755,9 @@ bool Arch::pack()
{
decode_lut_cells();
merge_constant_nets();
+ expand_macros();
pack_ports();
pack_default_conns();
- expand_macros();
pack_cluster();
return true;
}