Merge pull request #733 from acomodi/interchange-move-macro-before-io

interchange: arch: move macro expansion step before ios packing
This commit is contained in:
gatecat 2021-06-18 19:09:18 +01:00 committed by GitHub
commit c73d4cf6dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}