aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/site_lut_mapping_cache.cc
diff options
context:
space:
mode:
authorMaciej Kurc <mkurc@antmicro.com>2022-04-28 17:18:26 +0200
committerMaciej Kurc <mkurc@antmicro.com>2022-05-11 16:31:30 +0200
commitaafe1a176c821a3919e773b57ac08fb348c91597 (patch)
tree7c41b8d2bb8f89fd3d0fcacbf3f3bf1e6be45fc8 /fpga_interchange/site_lut_mapping_cache.cc
parent41936fefac2b819ad77204f0ed64ba01e9138c2a (diff)
downloadnextpnr-aafe1a176c821a3919e773b57ac08fb348c91597.tar.gz
nextpnr-aafe1a176c821a3919e773b57ac08fb348c91597.tar.bz2
nextpnr-aafe1a176c821a3919e773b57ac08fb348c91597.zip
Generalized representation of unused LUT pins connections
Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
Diffstat (limited to 'fpga_interchange/site_lut_mapping_cache.cc')
-rw-r--r--fpga_interchange/site_lut_mapping_cache.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga_interchange/site_lut_mapping_cache.cc b/fpga_interchange/site_lut_mapping_cache.cc
index b7a71397..82832ed9 100644
--- a/fpga_interchange/site_lut_mapping_cache.cc
+++ b/fpga_interchange/site_lut_mapping_cache.cc
@@ -138,8 +138,8 @@ bool SiteLutMappingResult::apply(const SiteInformation &siteInfo)
}
// LUT data
- // FIXME: Is there any other info that is being updated than vcc_pins ?
- cellInfo->lut_cell.vcc_pins = std::move(cell.lutCell.vcc_pins);
+ // FIXME: Is there any other info that is being updated than pin_connections ?
+ cellInfo->lut_cell.pin_connections = std::move(cell.lutCell.pin_connections);
}
return true;