aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authorD. Shah <dave@ds0.me>2021-02-04 11:21:16 +0000
committerD. Shah <dave@ds0.me>2021-02-05 19:19:17 +0000
commited8e3c83d97d775f912266c701ebf17e416cc50b (patch)
tree71714ced6a8567c2fd8dfaae33a8d99c05906a4c /ecp5
parent6d794abf495be78c6d1a2a69af432021c1eabfad (diff)
downloadnextpnr-ed8e3c83d97d775f912266c701ebf17e416cc50b.tar.gz
nextpnr-ed8e3c83d97d775f912266c701ebf17e416cc50b.tar.bz2
nextpnr-ed8e3c83d97d775f912266c701ebf17e416cc50b.zip
Add default implementation of some range-returning functions
Signed-off-by: D. Shah <dave@ds0.me>
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 705a9ebb..5ea5206b 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -602,12 +602,6 @@ struct Arch : ArchBase<ArchRanges>
return id;
}
- std::vector<std::pair<IdString, std::string>> getBelAttrs(BelId) const override
- {
- std::vector<std::pair<IdString, std::string>> ret;
- return ret;
- }
-
WireId getBelPinWire(BelId bel, IdString pin) const override;
BelPinRange getWireBelPins(WireId wire) const override
@@ -704,12 +698,6 @@ struct Arch : ArchBase<ArchRanges>
PipId getPipByName(IdStringList name) const override;
IdStringList getPipName(PipId pip) const override;
- std::vector<std::pair<IdString, std::string>> getPipAttrs(PipId) const
- {
- std::vector<std::pair<IdString, std::string>> ret;
- return ret;
- }
-
uint32_t getPipChecksum(PipId pip) const override { return pip.index; }
void bindPip(PipId pip, NetInfo *net, PlaceStrength strength) override