diff options
| author | gatecat <gatecat@ds0.me> | 2022-03-01 16:38:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-01 16:38:48 +0000 |
| commit | 0a70b9c992c06a7553725b3742052eb95abd5f20 (patch) | |
| tree | d1d8436576bad3424031c5ce435d76717fef196e /generic/viaduct | |
| parent | d8bea3ccfc7b6e925a9fd63c9172748ea0420e88 (diff) | |
| parent | 86699b42f619960bfefd4d0b479dd44a90527ea4 (diff) | |
| download | nextpnr-0a70b9c992c06a7553725b3742052eb95abd5f20.tar.gz nextpnr-0a70b9c992c06a7553725b3742052eb95abd5f20.tar.bz2 nextpnr-0a70b9c992c06a7553725b3742052eb95abd5f20.zip | |
Merge pull request #925 from YosysHQ/gatecat/netlist-iv
Switch to potentially-sparse net users array
Diffstat (limited to 'generic/viaduct')
| -rw-r--r-- | generic/viaduct/okami/okami.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/viaduct/okami/okami.cc b/generic/viaduct/okami/okami.cc index bcb34e84..864bdb45 100644 --- a/generic/viaduct/okami/okami.cc +++ b/generic/viaduct/okami/okami.cc @@ -511,7 +511,7 @@ struct OkamiImpl : ViaductAPI const auto &ff_data = fast_cell_info.at(ff->flat_index); // In our example arch; the FF D can either be driven from LUT F or LUT I3 // so either; FF D must equal LUT F or LUT I3 must be unused - if (ff_data.ff_d == lut_data.lut_f && lut_data.lut_f->users.size() == 1) + if (ff_data.ff_d == lut_data.lut_f && lut_data.lut_f->users.entries() == 1) return true; // Can't route FF and LUT output separately return false; |
